Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
kinrezC committed Oct 11, 2023
1 parent 94c4a8a commit cdb62cc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions box-simulation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ bindings.workspace = true
box_core.workspace = true
tokio = { version = "1.11.0", features = ["full"] }
anyhow = "1.0.75"
arbiter-core = { git = "https://github.com/primitivefinance/arbiter.git", branch = "arbiter/version" }
arbiter-derive = { git = "https://github.com/primitivefinance/arbiter.git", branch = "arbiter/version" }
arbiter-core = { git = "https://github.com/primitivefinance/arbiter.git", branch = "main" }
arbiter-derive = { git = "https://github.com/primitivefinance/arbiter.git", branch = "main" }
ethers = "2.0.10"
serde = "1.0.188"
serde_json = "1.0.107"
Expand Down
1 change: 0 additions & 1 deletion box-simulation/src/agents/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use super::*;

pub mod arbitrageur;
pub mod atomic_arbitrage;
pub mod liquidity_provider;
pub mod price_changer;
pub mod rebalancer;
4 changes: 2 additions & 2 deletions box-simulation/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ async fn main() -> Result<()> {
.with_max_level(tracing::Level::TRACE)
.init();

let _config = settings::params::SimulationConfig::new()?;
let config = settings::params::SimulationConfig::new()?;

let env = EnvironmentBuilder::new().build();
let contracts = setup::deploy::deploy_contracts(&env).await?;
let contracts = setup::deploy::deploy_contracts(&env, &config).await?;

let _arbitrageur = Arbitrageur::<G3M<RevmMiddleware>>::new(
"arbitrageur",
Expand Down

0 comments on commit cdb62cc

Please sign in to comment.