pallet-evm add get(fn) to AccountStorages (#6279)

This commit is contained in:
tgmichel
2020-06-15 17:05:54 +02:00
committed by GitHub
parent c2ad27271b
commit e99ff8ee96
+2 -1
View File
@@ -159,7 +159,8 @@ decl_storage! {
trait Store for Module<T: Trait> as EVM {
Accounts get(fn accounts): map hasher(blake2_128_concat) H160 => Account;
AccountCodes get(fn account_codes): map hasher(blake2_128_concat) H160 => Vec<u8>;
AccountStorages: double_map hasher(blake2_128_concat) H160, hasher(blake2_128_concat) H256 => H256;
AccountStorages get(fn account_storages):
double_map hasher(blake2_128_concat) H160, hasher(blake2_128_concat) H256 => H256;
}
add_extra_genesis {