Skip to content

Commit b39701c

Browse files
pallet-evm add get(fn) to AccountStorages (#6279)
1 parent f8c96a0 commit b39701c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,8 @@ decl_storage! {
159159
trait Store for Module<T: Trait> as EVM {
160160
Accounts get(fn accounts): map hasher(blake2_128_concat) H160 => Account;
161161
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;
162+
AccountStorages get(fn account_storages):
163+
double_map hasher(blake2_128_concat) H160, hasher(blake2_128_concat) H256 => H256;
163164
}
164165

165166
add_extra_genesis {

0 commit comments

Comments
 (0)