We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be85f5b commit 9c028fbCopy full SHA for 9c028fb
simln-lib/src/eclair.rs
@@ -191,7 +191,8 @@ impl LightningNode for EclairNode {
191
let payment_outcome = match payment.status.r#type {
192
PaymentStatus::Pending => continue,
193
PaymentStatus::Sent => PaymentOutcome::Success,
194
- // Task: https://github.com/bitcoin-dev-project/sim-ln/issues/26#issuecomment-1691780018
+ // PaymentStatus::Failed means API call failed (can happen for various reasons).
195
+ // Task to improve it: https://github.com/bitcoin-dev-project/sim-ln/issues/26#issuecomment-1691780018
196
PaymentStatus::Failed => PaymentOutcome::UnexpectedError,
197
};
198
0 commit comments