We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8c96a0 commit b39701cCopy full SHA for b39701c
src/lib.rs
@@ -159,7 +159,8 @@ decl_storage! {
159
trait Store for Module<T: Trait> as EVM {
160
Accounts get(fn accounts): map hasher(blake2_128_concat) H160 => Account;
161
AccountCodes get(fn account_codes): map hasher(blake2_128_concat) H160 => Vec<u8>;
162
- AccountStorages: double_map hasher(blake2_128_concat) H160, hasher(blake2_128_concat) H256 => H256;
+ AccountStorages get(fn account_storages):
163
+ double_map hasher(blake2_128_concat) H160, hasher(blake2_128_concat) H256 => H256;
164
}
165
166
add_extra_genesis {
0 commit comments