Skip to content

Commit

Permalink
remove book deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
0xJepsen committed Oct 23, 2023
1 parent 1f8a486 commit a1247c7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion simulation/src/simulations/dynamic_weights.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,13 @@ pub async fn run(config_path: &str) -> Result<()> {
.add(weight_changer.g3m.events(), "g3m")
.run()?;

let mut steppers: Vec<Box<dyn Agent>> = vec![Box::new(price_changer), Box::new(arbitrageur), Box::new(block_admin), Box::new(weight_changer), Box::new(lp)];
let mut steppers: Vec<Box<dyn Agent>> = vec![
Box::new(price_changer),
Box::new(arbitrageur),
Box::new(block_admin),
Box::new(weight_changer),
Box::new(lp),
];

info!("Entering startup loop for agents.");
for stepper in steppers.iter_mut() {
Expand Down

0 comments on commit a1247c7

Please sign in to comment.