Skip to content

Commit 22e95f7

Browse files
authored
Fix hash key (#152)
1 parent 893a46e commit 22e95f7

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

  • tool/state-processor/src/system

tool/state-processor/src/system/mod.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,7 @@ impl Processor {
121121
} else {
122122
a.nonce = 0;
123123

124-
self.shell_state.insert_value(
125-
b"AccountMigration",
126-
b"Accounts",
127-
&array_bytes::bytes2hex("", subhasher::blake2_128_concat(k)),
128-
a,
129-
);
124+
self.shell_state.insert_value(b"AccountMigration", b"Accounts", &k, a);
130125
}
131126
});
132127

0 commit comments

Comments
 (0)