From 998682ec8383a40351e772f65555a8079b78d520 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Tue, 22 Oct 2013 15:28:32 -0500 Subject: [PATCH] Remove sqlitedb from the common tests. The sqlite db backend is now deprecated. --- common_test.go | 1 - ldb/doc.go | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/common_test.go b/common_test.go index 16e56561..a0c771c4 100644 --- a/common_test.go +++ b/common_test.go @@ -10,7 +10,6 @@ import ( "fmt" "github.com/conformal/btcdb" _ "github.com/conformal/btcdb/ldb" - _ "github.com/conformal/btcdb/sqlite3" "github.com/conformal/btcutil" "github.com/conformal/btcwire" "io" diff --git a/ldb/doc.go b/ldb/doc.go index 629d429a..9899a4c6 100644 --- a/ldb/doc.go +++ b/ldb/doc.go @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. /* -Package ldb implements a instance of btcdb backed by leveldb. +Package ldb implements an instance of btcdb backed by leveldb. Database version number is stored in a flat file .ver Currently a single (littlendian) integer in the file. If there is