diff --git a/polkadot/runtime/common/src/crowdloan/migration.rs b/polkadot/runtime/common/src/crowdloan/migration.rs index 478471454f..560624744a 100644 --- a/polkadot/runtime/common/src/crowdloan/migration.rs +++ b/polkadot/runtime/common/src/crowdloan/migration.rs @@ -53,7 +53,6 @@ pub mod crowdloan_index_migration { total_balance >= fund.raised, "Total balance is not equal to the funds raised." ); - ensure!(total_balance > Zero::zero(), "Total balance is equal to zero."); } Ok(()) @@ -122,7 +121,6 @@ pub mod crowdloan_index_migration { total_balance >= fund.raised, "Total balance in new account is different than the funds raised." ); - ensure!(total_balance > Zero::zero(), "Total balance in the account is zero."); } Ok(())