cmd/loop: bump rate maximum

Increase rate maximum multiplier to increase maximum fees when there is a large fee rate change
pull/168/head
Alex Bosworth 4 years ago committed by GitHub
parent e5c5d49a30
commit 933f1b81d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -134,7 +134,7 @@ func getLimits(amt btcutil.Amount, quote *looprpc.QuoteResponse) *limits {
// Apply a multiplier to the estimated miner fee, to not get
// the swap canceled because fees increased in the mean time.
maxMinerFee: btcutil.Amount(quote.MinerFee) * 3,
maxMinerFee: btcutil.Amount(quote.MinerFee) * 100,
maxSwapFee: btcutil.Amount(quote.SwapFee),
maxPrepayAmt: &maxPrepayAmt,

Loading…
Cancel
Save