Skip to content

Commit 139b53e

Browse files
Expose Retry enum from channelmanager module
1 parent 6b49af1 commit 139b53e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning/src/ln/channelmanager.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ use crate::ln::onion_utils::HTLCFailReason;
5353
use crate::ln::msgs::{ChannelMessageHandler, DecodeError, LightningError, MAX_VALUE_MSAT};
5454
#[cfg(test)]
5555
use crate::ln::outbound_payment;
56-
use crate::ln::outbound_payment::{OutboundPayments, PaymentAttempts, PendingOutboundPayment, Retry};
56+
use crate::ln::outbound_payment::{OutboundPayments, PaymentAttempts, PendingOutboundPayment};
5757
use crate::ln::wire::Encode;
5858
use crate::chain::keysinterface::{EntropySource, KeysManager, NodeSigner, Recipient, SignerProvider, ChannelSigner};
5959
use crate::util::config::{UserConfig, ChannelConfig};
@@ -76,7 +76,7 @@ use core::time::Duration;
7676
use core::ops::Deref;
7777

7878
// Re-export this for use in the public API.
79-
pub use crate::ln::outbound_payment::PaymentSendFailure;
79+
pub use crate::ln::outbound_payment::{PaymentSendFailure, Retry};
8080

8181
// We hold various information about HTLC relay in the HTLC objects in Channel itself:
8282
//

0 commit comments

Comments
 (0)