Skip to content

Commit 45cb29d

Browse files
Assign unique storage names to pallets. (#5010)
* Assign unique storage names to pallets. * Bump spec * Upgrade logic for finality tracker (untested) * Logic for migrating Identity (untested) * Logic for migrating transaction-payment * Fix tests * Fix `decl_storage` build * Contract -> Contracts * Update Cargo.lock * bump spec * update migration * Fix merge error * Migration for contracts * Remove serde * Remove some illegal spaces and Options * Fix types in identity. * Minor variable rename Co-authored-by: Gavin Wood <[email protected]>
1 parent 7e918c8 commit 45cb29d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ pub trait Trait: frame_system::Trait + pallet_timestamp::Trait {
131131
}
132132

133133
decl_storage! {
134-
trait Store for Module<T: Trait> as Example {
134+
trait Store for Module<T: Trait> as EVM {
135135
Accounts get(fn accounts) config(): map hasher(blake2_256) H160 => Account;
136136
AccountCodes: map hasher(blake2_256) H160 => Vec<u8>;
137137
AccountStorages: double_map hasher(blake2_256) H160, hasher(blake2_256) H256 => H256;

0 commit comments

Comments
 (0)