mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-15 12:36:48 +00:00
Merge branch 'goleveldb_fix' into develop
This commit is contained in:
commit
179255c3fe
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ func (db *LDBDatabase) Close() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (db *LDBDatabase) Print() {
|
func (db *LDBDatabase) Print() {
|
||||||
iter := db.db.NewIterator(nil)
|
iter := db.db.NewIterator(nil,nil)
|
||||||
for iter.Next() {
|
for iter.Next() {
|
||||||
key := iter.Key()
|
key := iter.Key()
|
||||||
value := iter.Value()
|
value := iter.Value()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue