File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/DotNetLightning.Core/Channel Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ module internal ChannelError =
272
272
let inline unknownHTLCId x =
273
273
x |> UnknownHTLCId |> Error
274
274
275
- let inline htlcOriginNowKnown x =
275
+ let inline htlcOriginNotKnown x =
276
276
x |> HTLCOriginNotKnown |> Error
277
277
let inline invalidFailureCode x =
278
278
x |> InvalidFailureCode |> Error
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ module internal Commitments =
176
176
match cm.OriginChannels.TryGetValue( msg.HTLCId) with
177
177
| true , origin -> Ok origin
178
178
| false , _ ->
179
- msg.HTLCId |> htlcOriginNowKnown
179
+ msg.HTLCId |> htlcOriginNotKnown
180
180
let nextC = cm.AddRemoteProposal( msg)
181
181
return [ WeAcceptedFailHTLC( o, htlc, nextC)]
182
182
}
@@ -214,7 +214,7 @@ module internal Commitments =
214
214
match cm.OriginChannels.TryGetValue( msg.HTLCId) with
215
215
| true , o -> Ok o
216
216
| false , _ ->
217
- msg.HTLCId |> htlcOriginNowKnown
217
+ msg.HTLCId |> htlcOriginNotKnown
218
218
let nextC = cm.AddRemoteProposal( msg)
219
219
return [ WeAcceptedFailMalformedHTLC( o, htlc, nextC)]
220
220
}
You can’t perform that action at this time.
0 commit comments