Skip to content

Commit

Permalink
Renamed more occurrences of Monza
Browse files Browse the repository at this point in the history
These occurred in comments and log messages.
  • Loading branch information
mzabaluev committed May 10, 2024
1 parent 3d536d9 commit 1b0c7b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ movement-execution-util = { path = "protocol-units/execution/aptos/util" }
## execution/monza
monza-fin-executor = { path = "protocol-units/execution/monza/fin-executor" }
monza-executor = { path = "protocol-units/execution/monza/executor" }
## execution/monza
## execution/suzuka
suzuka-fin-executor = { path = "protocol-units/execution/suzuka/fin-executor" }
suzuka-executor = { path = "protocol-units/execution/suzuka/executor" }

Expand Down
6 changes: 3 additions & 3 deletions protocol-units/execution/aptos/opt-executor/src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pub struct Executor {
pub node_config: NodeConfig,
/// Context
pub context : Arc<Context>,
/// The Monza configuration.
/// The Aptos VM configuration.
pub aptos_config : movement_execution_util::config::just_aptos::Config,
}

Expand Down Expand Up @@ -212,7 +212,7 @@ impl Executor {
let (mempool_client_sender, mempool_client_receiver) = futures_mpsc::channel::<MempoolClientRequest>(10);
let node_config = NodeConfig::default();
let aptos_config = movement_execution_util::config::just_aptos::Config::try_from_env().context(
"Failed to create Monza config"
"Failed to create Aptos config"
)?;

Self::bootstrap(
Expand Down Expand Up @@ -307,7 +307,7 @@ impl Executor {
{
// log out to tracing
tracing::info!(
"Starting monza-opt-executor services at: {:?}",
"Starting movement-opt-executor services at: {:?}",
self.aptos_config.aptos_rest_listen_url
);

Expand Down

0 comments on commit 1b0c7b3

Please sign in to comment.