aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/statedb.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-06-29 16:44:51 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-06-29 16:44:51 +0800
commit6362a9d6102b26e926b3e73563267fc75cb30f9c (patch)
tree56ce21d1aaf6df3908335601a687f0f3ac4a50be /core/state/statedb.go
parentd55fc35df1ca4996048625421d4c475a437d273e (diff)
downloadgo-tangerine-6362a9d6102b26e926b3e73563267fc75cb30f9c.tar
go-tangerine-6362a9d6102b26e926b3e73563267fc75cb30f9c.tar.gz
go-tangerine-6362a9d6102b26e926b3e73563267fc75cb30f9c.tar.bz2
go-tangerine-6362a9d6102b26e926b3e73563267fc75cb30f9c.tar.lz
go-tangerine-6362a9d6102b26e926b3e73563267fc75cb30f9c.tar.xz
go-tangerine-6362a9d6102b26e926b3e73563267fc75cb30f9c.tar.zst
go-tangerine-6362a9d6102b26e926b3e73563267fc75cb30f9c.zip
Revert "test, cmd/evm, core, core/vm: illegal code hash implementation"
This reverts commit 7a5b571c671e70e0e4807cf971c15e2d1e09d33d.
Diffstat (limited to 'core/state/statedb.go')
-rw-r--r--core/state/statedb.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/core/state/statedb.go b/core/state/statedb.go
index 79cbbaee8..3e25e0c16 100644
--- a/core/state/statedb.go
+++ b/core/state/statedb.go
@@ -51,8 +51,6 @@ type StateDB struct {
txIndex int
logs map[common.Hash]vm.Logs
logSize uint
-
- reducedDao bool
}
// Create a new state from a given trie
@@ -163,14 +161,6 @@ func (self *StateDB) GetCode(addr common.Address) []byte {
return nil
}
-func (self *StateDB) GetCodeHash(addr common.Address) common.Hash {
- stateObject := self.GetStateObject(addr)
- if stateObject != nil {
- return common.BytesToHash(stateObject.codeHash)
- }
- return common.Hash{}
-}
-
func (self *StateDB) GetState(a common.Address, b common.Hash) common.Hash {
stateObject := self.GetStateObject(a)
if stateObject != nil {