From dbd94c3add5097b5458de22b14ec4ed18414bfc2 Mon Sep 17 00:00:00 2001 From: Severin Siffert Date: Wed, 17 Jan 2024 11:05:42 +0100 Subject: [PATCH] turn feature flag off --- src/dfx/src/lib/operations/cycles_ledger.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dfx/src/lib/operations/cycles_ledger.rs b/src/dfx/src/lib/operations/cycles_ledger.rs index 7e3cbd4a08..265e476323 100644 --- a/src/dfx/src/lib/operations/cycles_ledger.rs +++ b/src/dfx/src/lib/operations/cycles_ledger.rs @@ -28,7 +28,7 @@ use thiserror::Error; /// Cycles ledger feature flag to turn off behavior that would be confusing while cycles ledger is not enabled yet. //TODO(SDK-1331): feature flag can be removed -pub const CYCLES_LEDGER_ENABLED: bool = true; +pub const CYCLES_LEDGER_ENABLED: bool = false; const ICRC1_BALANCE_OF_METHOD: &str = "icrc1_balance_of"; const ICRC1_TRANSFER_METHOD: &str = "icrc1_transfer";