From 70ba3119b77151600d2b00c607ba89dfa6408254 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Sat, 25 Aug 2018 14:31:12 -0700 Subject: [PATCH] lnwallet/interface_test: run tests with disabled hint cache --- lnwallet/interface_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnwallet/interface_test.go b/lnwallet/interface_test.go index 6bdffc24..d71025a8 100644 --- a/lnwallet/interface_test.go +++ b/lnwallet/interface_test.go @@ -2076,7 +2076,7 @@ func TestLightningWallet(t *testing.T) { if err != nil { t.Fatalf("unable to create db: %v", err) } - hintCache, err := chainntnfs.NewHeightHintCache(db) + hintCache, err := chainntnfs.NewHeightHintCache(db, true) if err != nil { t.Fatalf("unable to create height hint cache: %v", err) }