Skip to content

Commit

Permalink
double allowed outgoing cltv delta
Browse files Browse the repository at this point in the history
  • Loading branch information
huumn committed Jan 5, 2025
1 parent 0750a7b commit 29c31e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wallets/wrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const MIN_OUTGOING_MSATS = BigInt(900) // the minimum msats we'll allow for the
const MAX_OUTGOING_MSATS = BigInt(900_000_000) // the maximum msats we'll allow for the outgoing invoice
const MAX_EXPIRATION_INCOMING_MSECS = 900_000 // the maximum expiration time we'll allow for the incoming invoice
const INCOMING_EXPIRATION_BUFFER_MSECS = 300_000 // the buffer enforce for the incoming invoice expiration
const MAX_OUTGOING_CLTV_DELTA = 500 // the maximum cltv delta we'll allow for the outgoing invoice
const MAX_OUTGOING_CLTV_DELTA = 1000 // the maximum cltv delta we'll allow for the outgoing invoice
export const MIN_SETTLEMENT_CLTV_DELTA = 80 // the minimum blocks we'll leave for settling the incoming invoice
const FEE_ESTIMATE_TIMEOUT_SECS = 5 // the timeout for the fee estimate request
const MAX_FEE_ESTIMATE_PERCENT = 3n // the maximum fee relative to outgoing we'll allow for the fee estimate
Expand Down

0 comments on commit 29c31e3

Please sign in to comment.