trie: add missing unlock call in error case (#18985)

pull/18121/head
HackyMiner 6 years ago committed by Felix Lange
parent 98e0bedcd7
commit bb7c786b09
  1. 1
      trie/database.go

@ -679,6 +679,7 @@ func (db *Database) Commit(node common.Hash, report bool) error {
}
if batch.ValueSize() > ethdb.IdealBatchSize {
if err := batch.Write(); err != nil {
db.lock.RUnlock()
return err
}
batch.Reset()

Loading…
Cancel
Save