Merge pull request #15997 from karalabe/batch-reset-size

ethdb: reset the batch size too on reset
This commit is contained in:
Péter Szilágyi 2018-01-30 19:18:42 +02:00 committed by GitHub
commit 07d4a02257
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -301,6 +301,7 @@ func (b *ldbBatch) ValueSize() int {
func (b *ldbBatch) Reset() { func (b *ldbBatch) Reset() {
b.b.Reset() b.b.Reset()
b.size = 0
} }
type table struct { type table struct {