diff options
author | Dan Laine <[email protected]> | 2020-11-01 18:24:33 -0500 |
---|---|---|
committer | Dan Laine <[email protected]> | 2020-11-01 18:24:33 -0500 |
commit | c6fcd057903dc5ccc785b3a34fef534a4cb39d0a (patch) | |
tree | 76e1bb939b6e3e792c4649162907b14e8ab45ec7 /plugin/evm/database.go | |
parent | 24abdf7cc0e5fc35ec89e45c1a8ccade9a49f11b (diff) |
remove id.Bytes() and ids.NewID
Diffstat (limited to 'plugin/evm/database.go')
-rw-r--r-- | plugin/evm/database.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/evm/database.go b/plugin/evm/database.go index 18890fa..fff18cb 100644 --- a/plugin/evm/database.go +++ b/plugin/evm/database.go @@ -53,7 +53,7 @@ func (db Database) NewIterator(prefix []byte, start []byte) ethdb.Iterator { // NewIteratorWithStart implements ethdb.Database func (db Database) NewIteratorWithStart(start []byte) ethdb.Iterator { - return db.NewIteratorWithStart(start) + return db.Database.NewIteratorWithStart(start) } // Batch implements ethdb.Batch |