From 3388ead22433b70ac3e89e42ab5ddfbab89a746b Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Wed, 11 Jan 2017 09:58:20 +0000 Subject: [PATCH] ethdb: Fix typo --- ethdb/database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethdb/database.go b/ethdb/database.go index 05f093c48a..c0e92a87bc 100644 --- a/ethdb/database.go +++ b/ethdb/database.go @@ -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} }