Skip to content

Commit 29c31e3

Browse files
committed
double allowed outgoing cltv delta
1 parent 0750a7b commit 29c31e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wallets/wrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const MIN_OUTGOING_MSATS = BigInt(900) // the minimum msats we'll allow for the
66
const MAX_OUTGOING_MSATS = BigInt(900_000_000) // the maximum msats we'll allow for the outgoing invoice
77
const MAX_EXPIRATION_INCOMING_MSECS = 900_000 // the maximum expiration time we'll allow for the incoming invoice
88
const INCOMING_EXPIRATION_BUFFER_MSECS = 300_000 // the buffer enforce for the incoming invoice expiration
9-
const MAX_OUTGOING_CLTV_DELTA = 500 // the maximum cltv delta we'll allow for the outgoing invoice
9+
const MAX_OUTGOING_CLTV_DELTA = 1000 // the maximum cltv delta we'll allow for the outgoing invoice
1010
export const MIN_SETTLEMENT_CLTV_DELTA = 80 // the minimum blocks we'll leave for settling the incoming invoice
1111
const FEE_ESTIMATE_TIMEOUT_SECS = 5 // the timeout for the fee estimate request
1212
const MAX_FEE_ESTIMATE_PERCENT = 3n // the maximum fee relative to outgoing we'll allow for the fee estimate

0 commit comments

Comments
 (0)