From ef906876a05caac75c47319951bbc6e0b97ff004 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Thu, 7 Jan 2021 13:19:22 +1100 Subject: [PATCH] Increase timelocks on testnet To allow time for stagenet Monero transaction to be mined. --- swap/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/src/config.rs b/swap/src/config.rs index 5e138f00..dedd421e 100644 --- a/swap/src/config.rs +++ b/swap/src/config.rs @@ -86,7 +86,7 @@ mod testnet { pub static MONERO_FINALITY_CONFIRMATIONS: u32 = 5; // This does not reflect recommended values for mainnet! - pub static BITCOIN_CANCEL_TIMELOCK: Timelock = Timelock::new(6); + pub static BITCOIN_CANCEL_TIMELOCK: Timelock = Timelock::new(12); pub static BITCOIN_PUNISH_TIMELOCK: Timelock = Timelock::new(6); }