Skip to content

Commit 39a8796

Browse files
committed
f Switch default fee update rate to 10 minutes
1 parent 6958478 commit 39a8796

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ const DEFAULT_LISTENING_ADDR: &str = "0.0.0.0:9735";
174174
const DEFAULT_CLTV_EXPIRY_DELTA: u32 = 144;
175175
const DEFAULT_BDK_WALLET_SYNC_INTERVAL_SECS: u64 = 60;
176176
const DEFAULT_LDK_WALLET_SYNC_INTERVAL_SECS: u64 = 20;
177-
const DEFAULT_FEE_RATE_CACHE_UPDATE_INTERVAL_SECS: u64 = 60 * 60;
177+
const DEFAULT_FEE_RATE_CACHE_UPDATE_INTERVAL_SECS: u64 = 60 * 10;
178178
const DEFAULT_LOG_LEVEL: LogLevel = LogLevel::Debug;
179179

180180
// The 'stop gap' parameter used by BDK's wallet sync. This seems to configure the threshold
@@ -218,7 +218,7 @@ const WALLET_KEYS_SEED_LEN: usize = 64;
218218
/// | `default_cltv_expiry_delta` | 144 |
219219
/// | `onchain_wallet_sync_interval_secs` | 60 |
220220
/// | `wallet_sync_interval_secs` | 20 |
221-
/// | `fee_rate_cache_update_interval_secs` | 3600 |
221+
/// | `fee_rate_cache_update_interval_secs` | 600 |
222222
/// | `log_level` | `Debug` |
223223
///
224224
pub struct Config {

0 commit comments

Comments
 (0)