mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 17:55:36 +01:00
chain: set default fees to min possible
This commit is contained in:
parent
0097cb969d
commit
5fa345310b
1 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@ import (
|
|||
"github.com/lightningnetwork/lnd/htlcswitch"
|
||||
"github.com/lightningnetwork/lnd/lnwallet"
|
||||
"github.com/lightningnetwork/lnd/lnwallet/btcwallet"
|
||||
"github.com/lightningnetwork/lnd/lnwire"
|
||||
"github.com/lightningnetwork/lnd/routing/chainview"
|
||||
"github.com/roasbeef/btcd/chaincfg/chainhash"
|
||||
"github.com/roasbeef/btcrpcclient"
|
||||
|
@ -29,7 +30,7 @@ import (
|
|||
// Bitcoin channels.
|
||||
var defaultBitcoinForwardingPolicy = htlcswitch.ForwardingPolicy{
|
||||
MinHTLC: 0,
|
||||
BaseFee: 1,
|
||||
BaseFee: lnwire.NewMSatFromSatoshis(1),
|
||||
FeeRate: 1,
|
||||
TimeLockDelta: 144,
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue