ethdb: Fix typo

This commit is contained in:
Nick Johnson 2017-01-11 09:58:20 +00:00
parent 1d5814dc2a
commit 3388ead224

View file

@ -342,7 +342,7 @@ type tableBatch struct {
}
// 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}
}