diff options
author | gary rong <garyrong0905@gmail.com> | 2019-04-05 14:44:02 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2019-04-05 14:44:02 +0800 |
commit | 36f81118f6d00713dbf8d1caf168ad937e0f1a90 (patch) | |
tree | 8c816e30b7ed748fdbdb2e73d9fbcc070ea7b500 /core/vm | |
parent | 7dd3194710f1659067f4f1113ce802dd741b1464 (diff) | |
download | go-tangerine-36f81118f6d00713dbf8d1caf168ad937e0f1a90.tar go-tangerine-36f81118f6d00713dbf8d1caf168ad937e0f1a90.tar.gz go-tangerine-36f81118f6d00713dbf8d1caf168ad937e0f1a90.tar.bz2 go-tangerine-36f81118f6d00713dbf8d1caf168ad937e0f1a90.tar.lz go-tangerine-36f81118f6d00713dbf8d1caf168ad937e0f1a90.tar.xz go-tangerine-36f81118f6d00713dbf8d1caf168ad937e0f1a90.tar.zst go-tangerine-36f81118f6d00713dbf8d1caf168ad937e0f1a90.zip |
core/state: fix state iterator (#19127)
* core/state: fix state iterator
* core: fix state iterator more elegant
Diffstat (limited to 'core/vm')
-rw-r--r-- | core/vm/interface.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/interface.go b/core/vm/interface.go index fc15082f1..dd401466a 100644 --- a/core/vm/interface.go +++ b/core/vm/interface.go @@ -63,7 +63,7 @@ type StateDB interface { AddLog(*types.Log) AddPreimage(common.Hash, []byte) - ForEachStorage(common.Address, func(common.Hash, common.Hash) bool) + ForEachStorage(common.Address, func(common.Hash, common.Hash) bool) error } // CallContext provides a basic interface for the EVM calling conventions. The EVM |