diff --git a/frame/evm/src/lib.rs b/frame/evm/src/lib.rs index 3600b866b2d99..72392629d6efb 100644 --- a/frame/evm/src/lib.rs +++ b/frame/evm/src/lib.rs @@ -159,7 +159,8 @@ decl_storage! { trait Store for Module 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; - 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 {