diff --git a/src/backend/src/state.rs b/src/backend/src/state.rs index 18ba1e078..f14e5e9ca 100644 --- a/src/backend/src/state.rs +++ b/src/backend/src/state.rs @@ -11,7 +11,7 @@ const MAINNET_SIGNER_CANISTER_ID: &str = "grghe-syaaa-aaaar-qabyq-cai"; // mainnet canister ID, which is also the recommended ID to use in test environments. lazy_static! { pub static ref CYCLES_LEDGER: Principal = Principal::from_text(option_env!("CANISTER_ID_CYCLES_LEDGER").unwrap_or(MAINNET_CYCLES_LEDGER_CANISTER_ID)) - .unwrap_or_else(|e| unreachable!("The cycles canister ID from DFX and mainnet are valid and should have been parsed. Is this being compiled in some strange way? {e}")); + .unwrap_or_else(|e| unreachable!("The cycles_ledger canister ID from DFX and mainnet are valid and should have been parsed. Is this being compiled in some strange way? {e}")); pub static ref SIGNER: Principal = Principal::from_text(option_env!("CANISTER_ID_SIGNER").unwrap_or(MAINNET_SIGNER_CANISTER_ID)) .unwrap_or_else(|e| unreachable!("The signer canister ID from mainnet or dfx valid and should have been parsed. Is this being compiled in some strange way? {e}")); }