This commit is contained in:
Ian Norden
2020-06-03 15:46:34 -05:00
parent 24b29cadf6
commit 9427a62532
8 changed files with 319 additions and 4 deletions
+2
View File
@@ -41,6 +41,8 @@ func NewIterator(start, prefix []byte, db *sqlx.DB) ethdb.Iterator {
// Next moves the iterator to the next key/value pair
// It returns whether the iterator is exhausted
func (i *Iterator) Next() bool {
// this is complicated by the ipfs db keys not being the keccak256 hashes
// go-ethereum usage of this method expects the iteration to occur over keccak256 keys
panic("implement me: Next")
}