forked from cerc-io/plugeth
Added each callback for storage
This commit is contained in:
parent
7a410643ac
commit
7c0a27a0f4
@ -5,6 +5,7 @@ import (
|
||||
"fmt"
|
||||
"github.com/ethereum/eth-go/ethchain"
|
||||
"github.com/ethereum/eth-go/ethcrypto"
|
||||
"github.com/ethereum/eth-go/ethtrie"
|
||||
"github.com/ethereum/eth-go/ethutil"
|
||||
"strings"
|
||||
)
|
||||
@ -212,6 +213,10 @@ func (c *PStateObject) IsContract() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
func (self *PStateObject) EachStorage(cb ethtrie.EachCallback) {
|
||||
self.object.State().EachStorage(cb)
|
||||
}
|
||||
|
||||
type KeyVal struct {
|
||||
Key string
|
||||
Value string
|
||||
|
Loading…
Reference in New Issue
Block a user