lnwallet: correct error message in txn subscription test

This commit is contained in:
Olaoluwa Osuntokun 2017-01-05 20:44:06 -08:00
parent 35cf21733d
commit 4e53cf8b49
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
1 changed files with 1 additions and 1 deletions

View File

@ -1103,7 +1103,7 @@ func testTransactionSubscriptions(miner *rpctest.Harness, w *lnwallet.LightningW
txDetail := <-txClient.ConfirmedTransactions()
if txDetail.NumConfirmations != 1 {
t.Fatalf("incorrect number of confs, expected %v got %v",
0, txDetail.NumConfirmations)
1, txDetail.NumConfirmations)
}
if txDetail.Value != outputAmt {
t.Fatalf("incorrect output amt, expected %v got %v",