From 737bc01081208a659524f58c1f85afab3a71f9aa Mon Sep 17 00:00:00 2001 From: benedetta davico <46782255+benedettadavico@users.noreply.github.com> Date: Tue, 31 Mar 2026 15:20:28 +0200 Subject: [PATCH] Comment out tiered pricing migration call --- contracts/ecash/src/contract/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/ecash/src/contract/mod.rs b/contracts/ecash/src/contract/mod.rs index ad989902d4..70ef1cd4bb 100644 --- a/contracts/ecash/src/contract/mod.rs +++ b/contracts/ecash/src/contract/mod.rs @@ -669,7 +669,7 @@ impl NymEcashContract { set_build_information!(ctx.deps.storage)?; cw2::ensure_from_older_version(ctx.deps.storage, CONTRACT_NAME, CONTRACT_VERSION)?; - queued_migrations::add_tiered_pricing(ctx.deps, initial_whitelist)?; + // queued_migrations::add_tiered_pricing(ctx.deps, initial_whitelist)?; Ok(Response::new()) }