mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-01-19 05:45:21 +01:00
sweep: lower the max allowed fee rate for sweeping inputs
This commit changes the DefaultMaxFeeRate from 10,120 sat/vb to 1,000 sat/vb.
This commit is contained in:
parent
66b8700c0b
commit
60a44c3f53
@ -22,9 +22,9 @@ import (
|
||||
|
||||
const (
|
||||
// DefaultMaxFeeRate is the default maximum fee rate allowed within the
|
||||
// UtxoSweeper. The current value is equivalent to a fee rate of 10,000
|
||||
// UtxoSweeper. The current value is equivalent to a fee rate of 1,000
|
||||
// sat/vbyte.
|
||||
DefaultMaxFeeRate = chainfee.FeePerKwFloor * 1e4
|
||||
DefaultMaxFeeRate = chainfee.AbsoluteFeePerKwFloor * 1e3
|
||||
|
||||
// DefaultFeeRateBucketSize is the default size of fee rate buckets
|
||||
// we'll use when clustering inputs into buckets with similar fee rates
|
||||
|
Loading…
Reference in New Issue
Block a user