@@ -61,7 +61,7 @@ func (ctx *Context) NotifySpend(tx *wire.MsgTx, inputIndex uint32) {
61
61
SpenderInputIndex : inputIndex ,
62
62
}:
63
63
case <- time .After (Timeout ):
64
- ctx .T .Fatalf ("htlc spend not consumed" )
64
+ ctx .T .Fatalf ("spend not consumed" )
65
65
}
66
66
}
67
67
@@ -74,7 +74,7 @@ func (ctx *Context) NotifyConf(tx *wire.MsgTx) {
74
74
Tx : tx ,
75
75
}:
76
76
case <- time .After (Timeout ):
77
- ctx .T .Fatalf ("htlc spend not consumed" )
77
+ ctx .T .Fatalf ("confirmation not consumed" )
78
78
}
79
79
}
80
80
@@ -86,7 +86,7 @@ func (ctx *Context) AssertRegisterSpendNtfn(script []byte) {
86
86
case spendIntent := <- ctx .Lnd .RegisterSpendChannel :
87
87
require .Equal (
88
88
ctx .T , script , spendIntent .PkScript ,
89
- "server not listening for published htlc script" ,
89
+ "server not listening for published script" ,
90
90
)
91
91
92
92
case <- time .After (Timeout ):
@@ -134,7 +134,7 @@ func (ctx *Context) AssertRegisterConf(expectTxHash bool, confs int32) *ConfRegi
134
134
require .Equal (ctx .T , confs , confIntent .NumConfs )
135
135
136
136
case <- time .After (Timeout ):
137
- ctx .T .Fatalf ("htlc confirmed not subscribed to" )
137
+ ctx .T .Fatalf ("tx confirmed not subscribed to" )
138
138
}
139
139
140
140
return confIntent
@@ -249,7 +249,7 @@ func (ctx *Context) GetOutputIndex(tx *wire.MsgTx,
249
249
}
250
250
}
251
251
252
- ctx .T .Fatal ("htlc not present in tx" )
252
+ ctx .T .Fatal ("the output not present in tx" )
253
253
return 0
254
254
}
255
255
0 commit comments