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 45cb29d commit 199f7b8Copy full SHA for 199f7b8
src/lib.rs
@@ -132,9 +132,9 @@ pub trait Trait: frame_system::Trait + pallet_timestamp::Trait {
132
133
decl_storage! {
134
trait Store for Module<T: Trait> as EVM {
135
- Accounts get(fn accounts) config(): map hasher(blake2_256) H160 => Account;
136
- AccountCodes: map hasher(blake2_256) H160 => Vec<u8>;
137
- AccountStorages: double_map hasher(blake2_256) H160, hasher(blake2_256) H256 => H256;
+ Accounts get(fn accounts) config(): map hasher(blake2_128_concat) H160 => Account;
+ AccountCodes: map hasher(blake2_128_concat) H160 => Vec<u8>;
+ AccountStorages: double_map hasher(blake2_128_concat) H160, hasher(blake2_128_concat) H256 => H256;
138
}
139
140
0 commit comments