Package org.ldk.structs
Class Event.PaymentFailed
- java.lang.Object
-
- org.ldk.structs.Event
-
- org.ldk.structs.Event.PaymentFailed
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.ldk.structs.Event
Event.FundingGenerationReady, Event.PaymentFailed, Event.PaymentForwarded, Event.PaymentReceived, Event.PaymentSent, Event.PendingHTLCsForwardable, Event.SpendableOutputs
-
-
Field Summary
Fields Modifier and Type Field Description byte[]
payment_hash
The hash which was given to ChannelManager::send_payment.boolean
rejected_by_dest
Indicates the payment was rejected for some reason by the recipient.
-
Method Summary
-
Methods inherited from class org.ldk.structs.Event
clone, finalize, funding_generation_ready, payment_failed, payment_forwarded, payment_received, payment_sent, pending_htlcs_forwardable, spendable_outputs, write
-
-
-
-
Field Detail
-
payment_hash
public final byte[] payment_hash
The hash which was given to ChannelManager::send_payment.
-
rejected_by_dest
public final boolean rejected_by_dest
Indicates the payment was rejected for some reason by the recipient. This implies that the payment has failed, not just the route in question. If this is not set, you may retry the payment via a different route.
-
-