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 f891743 commit c68494dCopy full SHA for c68494d
core/state/journal_arbitrum.go
@@ -42,7 +42,7 @@ type EvictWasm struct {
42
43
func (ch EvictWasm) revert(s *StateDB) {
44
asm, err := s.TryGetActivatedAsm(ch.ModuleHash) // only happens in native mode
45
- if err == nil && len(asm) == 0 {
+ if err == nil && len(asm) != 0 {
46
//if we failed to get it - it's not in the current rust cache
47
CacheWasmRust(asm, ch.ModuleHash, ch.Version, ch.Debug)
48
}
0 commit comments