From e229074f79cdcaebdbd7bee5feb3cef2b0cb551f Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Fri, 22 Nov 2019 16:22:07 +0100 Subject: [PATCH] Fix `run_to_block` for Crowdfund module (#603) Probably a copy paste error. --- polkadot/runtime/src/crowdfund.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/runtime/src/crowdfund.rs b/polkadot/runtime/src/crowdfund.rs index 6d4a6f67a2..80eac18106 100644 --- a/polkadot/runtime/src/crowdfund.rs +++ b/polkadot/runtime/src/crowdfund.rs @@ -662,7 +662,7 @@ mod tests { System::on_initialize(System::block_number()); Balances::on_initialize(System::block_number()); Slots::on_initialize(System::block_number()); - Treasury::on_finalize(System::block_number()); + Treasury::on_initialize(System::block_number()); Crowdfund::on_initialize(System::block_number()); } }