ethdb/pebble: fix NewBatchWithSize to set db (#27350)

pull/27445/head
Martin Holst Swende 1 year ago committed by GitHub
parent 8a78a4f79f
commit 33fdd030b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      ethdb/pebble/pebble.go

@ -307,7 +307,8 @@ func (d *Database) NewBatch() ethdb.Batch {
// batch object without any pre-allocated space.
func (d *Database) NewBatchWithSize(_ int) ethdb.Batch {
return &batch{
b: d.db.NewBatch(),
b: d.db.NewBatch(),
db: d,
}
}

Loading…
Cancel
Save