Skip to content

Commit a568d5c

Browse files
committed
f Switch default fee update rate to 10 minutes
1 parent a522d28 commit a568d5c

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
@@ -175,7 +175,7 @@ const DEFAULT_LISTENING_ADDR: &str = "0.0.0.0:9735";
175175
const DEFAULT_CLTV_EXPIRY_DELTA: u32 = 144;
176176
const DEFAULT_BDK_WALLET_SYNC_INTERVAL_SECS: u64 = 60;
177177
const DEFAULT_LDK_WALLET_SYNC_INTERVAL_SECS: u64 = 20;
178-
const DEFAULT_FEE_RATE_CACHE_UPDATE_INTERVAL_SECS: u64 = 60 * 60;
178+
const DEFAULT_FEE_RATE_CACHE_UPDATE_INTERVAL_SECS: u64 = 60 * 10;
179179
const DEFAULT_LOG_LEVEL: LogLevel = LogLevel::Debug;
180180

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

0 commit comments

Comments
 (0)