From 318c89dfed25ecfa916b966c965e157f088d5205 Mon Sep 17 00:00:00 2001 From: Yash Bhutwala Date: Tue, 25 Jun 2019 19:57:39 -0400 Subject: [PATCH] fix comment of database.Tx to match code --- database/ffldb/db.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/ffldb/db.go b/database/ffldb/db.go index fd1ff895..b4994421 100644 --- a/database/ffldb/db.go +++ b/database/ffldb/db.go @@ -950,7 +950,7 @@ type pendingBlock struct { } // transaction represents a database transaction. It can either be read-only or -// read-write and implements the database.Bucket interface. The transaction +// read-write and implements the database.Tx interface. The transaction // provides a root bucket against which all read and writes occur. type transaction struct { managed bool // Is the transaction managed?