From 1b0c7b3043948edd4d256131e4ee28604bc83c32 Mon Sep 17 00:00:00 2001 From: Mikhail Zabaluev Date: Fri, 10 May 2024 16:54:51 +0300 Subject: [PATCH] Renamed more occurrences of Monza These occurred in comments and log messages. --- Cargo.toml | 2 +- protocol-units/execution/aptos/opt-executor/src/executor.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 263e03dad..3d5585c4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } diff --git a/protocol-units/execution/aptos/opt-executor/src/executor.rs b/protocol-units/execution/aptos/opt-executor/src/executor.rs index ac2598f3b..98f746149 100644 --- a/protocol-units/execution/aptos/opt-executor/src/executor.rs +++ b/protocol-units/execution/aptos/opt-executor/src/executor.rs @@ -61,7 +61,7 @@ pub struct Executor { pub node_config: NodeConfig, /// Context pub context : Arc, - /// The Monza configuration. + /// The Aptos VM configuration. pub aptos_config : movement_execution_util::config::just_aptos::Config, } @@ -212,7 +212,7 @@ impl Executor { let (mempool_client_sender, mempool_client_receiver) = futures_mpsc::channel::(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( @@ -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 );