This commit is contained in:
cui 2026-07-17 21:53:00 -07:00 committed by GitHub
commit 51159f53d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -169,7 +169,7 @@ func (db *Database) NewIterator(prefix []byte, start []byte) ethdb.Iterator {
var (
pr = string(prefix)
st = string(append(prefix, start...))
st = string(prefix) + string(start)
keys = make([]string, 0, len(db.db))
values = make([][]byte, 0, len(db.db))
)