Skip to content

Commit 7cbd226

Browse files
committed
fix: bump sync timeouts
1 parent 89fe808 commit 7cbd226

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ pub(crate) const NODE_ANN_BCAST_INTERVAL: Duration = Duration::from_secs(60 * 60
7575
pub(crate) const WALLET_SYNC_INTERVAL_MINIMUM_SECS: u64 = 10;
7676

7777
// The timeout after which we abort a wallet syncing operation.
78-
pub(crate) const BDK_WALLET_SYNC_TIMEOUT_SECS: u64 = 40; //20; // Alby: originally 90
78+
pub(crate) const BDK_WALLET_SYNC_TIMEOUT_SECS: u64 = 90; //40; //20; // Alby: larger timeouts are needed after multiple FC
7979

8080
// The timeout after which we abort a wallet syncing operation.
81-
pub(crate) const LDK_WALLET_SYNC_TIMEOUT_SECS: u64 = 40; //10; // Alby: originally 90
81+
pub(crate) const LDK_WALLET_SYNC_TIMEOUT_SECS: u64 = 90; //40; //10; // Alby: larger timeouts are needed after multiple FC
8282

8383
// The timeout after which we give up waiting on LDK's event handler to exit on shutdown.
8484
pub(crate) const LDK_EVENT_HANDLER_SHUTDOWN_TIMEOUT_SECS: u64 = 60; // 30;

0 commit comments

Comments
 (0)