From 9c59e8a271433fde59eb5e5a15589c6c75f26dde Mon Sep 17 00:00:00 2001 From: Xiliang Chen Date: Thu, 16 Jan 2020 21:01:29 +1300 Subject: [PATCH] fix storage name for crowdfund module (#772) --- polkadot/runtime/common/src/crowdfund.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/runtime/common/src/crowdfund.rs b/polkadot/runtime/common/src/crowdfund.rs index 127a2ed5e5..8898f45c64 100644 --- a/polkadot/runtime/common/src/crowdfund.rs +++ b/polkadot/runtime/common/src/crowdfund.rs @@ -155,7 +155,7 @@ pub struct FundInfo { } decl_storage! { - trait Store for Module as Example { + trait Store for Module as Crowdfund { /// Info on all of the funds. Funds get(funds): map FundIndex => Option, T::Hash, T::BlockNumber>>;