From 9a025867d03655fb7fe810ba901191a05454d2a4 Mon Sep 17 00:00:00 2001 From: Wilmer Paulino Date: Mon, 1 Oct 2018 14:20:27 -0700 Subject: [PATCH] Revert "chainntnfs/btcdnotify: disable height hint cache in testing" This reverts commit 98e7c968d4bf5900a5d7be7f557eab8f623633c0. --- chainntnfs/btcdnotify/btcd_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chainntnfs/btcdnotify/btcd_test.go b/chainntnfs/btcdnotify/btcd_test.go index 6ef564d0e..18bd1bb3e 100644 --- a/chainntnfs/btcdnotify/btcd_test.go +++ b/chainntnfs/btcdnotify/btcd_test.go @@ -23,7 +23,7 @@ func initHintCache(t *testing.T) *chainntnfs.HeightHintCache { if err != nil { t.Fatalf("unable to create db: %v", err) } - hintCache, err := chainntnfs.NewHeightHintCache(db, true) + hintCache, err := chainntnfs.NewHeightHintCache(db) if err != nil { t.Fatalf("unable to create hint cache: %v", err) }