lnwallet: update for new API change in NewBitcoindClient

This commit is contained in:
Olaoluwa Osuntokun 2018-09-12 20:55:51 -07:00
parent 2509ecd8d8
commit 27abad92f6
No known key found for this signature in database
GPG Key ID: CE58F7F8E20FD9A2

@ -2315,8 +2315,8 @@ func runTests(t *testing.T, walletDriver *lnwallet.WalletDriver,
// Create a btcwallet bitcoind client for both Alice and
// Bob.
aliceClient = chainConn.NewBitcoindClient(time.Unix(0, 0))
bobClient = chainConn.NewBitcoindClient(time.Unix(0, 0))
aliceClient = chainConn.NewBitcoindClient()
bobClient = chainConn.NewBitcoindClient()
default:
t.Fatalf("unknown chain driver: %v", backEnd)
}