Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Autoparallel committed Feb 9, 2024
1 parent 535e529 commit 003d2f0
Show file tree
Hide file tree
Showing 12 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions crates/sim/src/agents/mod.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pub mod base;
pub mod portfolio_management_agents;
pub mod portfolio_management;

use base::{block_admin::*, price_changer::*, token_admin::*};
use portfolio_management_agents::{
use portfolio_management::{
base::parameter_manager::*, g3m::g3m_liquidity_provider::*, lognormal::ln_liquidity_provider::*,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ use tracing::log::info;

use super::{
agent::*,
agents::{
base::token_admin::TokenAdmin, portfolio_management_agents::base::arbitrageur::Arbitrageur,
},
agents::{base::token_admin::TokenAdmin, portfolio_management::base::arbitrageur::Arbitrageur},
Environment, Result, RevmMiddleware, *,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use ethers::{
};
use tracing::info;

use self::agents::portfolio_management_agents::base::arbitrageur::Arbitrageur;
use self::agents::portfolio_management::base::arbitrageur::Arbitrageur;
use super::{
agent::*, agents::base::token_admin::TokenAdmin, Environment, Result, RevmMiddleware, *,
};
Expand Down
2 changes: 1 addition & 1 deletion crates/sim/src/scenarios.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use arbiter_core::data_collection::EventLogger;
use clients::protocol::ProtocolClient;
use revm::db::{CacheDB, EmptyDB};

use self::agents::portfolio_management_agents::{g3m::g3m_setup, lognormal::ln_setup};
use self::agents::portfolio_management::{g3m::g3m_setup, lognormal::ln_setup};
use super::*;
use crate::{
agent::Agents,
Expand Down

0 comments on commit 003d2f0

Please sign in to comment.