mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
13 lines
294 B
Go
13 lines
294 B
Go
package sweep
|
|
|
|
import (
|
|
"github.com/lightningnetwork/lnd/lnwallet/chainfee"
|
|
)
|
|
|
|
var (
|
|
// DefaultMaxFeeRate is the default maximum fee rate allowed within the
|
|
// UtxoSweeper. The current value is equivalent to a fee rate of 1,000
|
|
// sat/vbyte.
|
|
DefaultMaxFeeRate chainfee.SatPerVByte = 1e3
|
|
)
|