Skip to content

Commit 8b74b18

Browse files
author
2075
committed
feat(modules): flush storage
1 parent e053871 commit 8b74b18

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

modules/control/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ pub mod module {
192192
//
193193

194194
decl_storage! {
195-
trait Store for Module<T: Config> as Control40 {
195+
trait Store for Module<T: Config> as Control44 {
196196

197197
/// DAO by hash
198198
Bodies get(fn body_by_hash): map hasher(blake2_128_concat) T::Hash => Body<T::Hash, T::AccountId, T::BlockNumber, ControlType>;

modules/flow/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ pub struct Campaign<Hash, AccountId, Balance, BlockNumber, Timestamp, FlowProtoc
239239
}
240240

241241
decl_storage! {
242-
trait Store for Module<T: Config> as Flow40 {
242+
trait Store for Module<T: Config> as Flow44 {
243243

244244
// TODO:
245245
// actually most of the aggregated data only consumes cpu cycles

modules/sense/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ pub mod module {
9191
//
9292

9393
decl_storage! {
94-
trait Store for Module<T: Config> as Sense37 {
94+
trait Store for Module<T: Config> as Sense44 {
9595
/// A Sense Entity
9696
Sense get(fn entity): map hasher(blake2_128_concat) T::AccountId => Entity<T::AccountId,T::BlockNumber>;
9797
/// XP across the metaverse

modules/signal/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ const MAX_PROPOSAL_DURATION: u32 = 864000; // 60 * 60 * 24 * 30 / 3
133133
//
134134

135135
decl_storage! {
136-
trait Store for Module<T: Config> as Signal40 {
136+
trait Store for Module<T: Config> as Signal44 {
137137

138138
/// Global status
139139
Proposals get(fn proposals): map hasher(blake2_128_concat) T::Hash => Proposal<T::Hash, T::BlockNumber, ProposalType, VotingType>;

modules/tangram/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ pub trait Config: frame_system::Config + balances::Config {
157157
}
158158

159159
decl_storage! {
160-
trait Store for Module<T: Config> as Tangram40 {
160+
trait Store for Module<T: Config> as Tangram44 {
161161

162162
// realm
163163

0 commit comments

Comments
 (0)