mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 22:56:43 +00:00
ethdb: Fix typo
This commit is contained in:
parent
1d5814dc2a
commit
3388ead224
1 changed files with 1 additions and 1 deletions
|
|
@ -342,7 +342,7 @@ type tableBatch struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewTableBatch returns a Batch object which prefixes all keys with a given string.
|
// NewTableBatch returns a Batch object which prefixes all keys with a given string.
|
||||||
func NewTableBatch(db Database, prefix string) *Batch {
|
func NewTableBatch(db Database, prefix string) Batch {
|
||||||
return &tableBatch{db.NewBatch(), prefix}
|
return &tableBatch{db.NewBatch(), prefix}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue