autopilot: extract default fee estimate target conf into constant
This commit is contained in:
parent
52b7603d25
commit
9a7f24d2d3
@ -9,6 +9,11 @@ import (
|
|||||||
"github.com/lightningnetwork/lnd/lnwire"
|
"github.com/lightningnetwork/lnd/lnwire"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// DefaultConfTarget is the default confirmation target for autopilot channels.
|
||||||
|
// TODO(halseth): possibly make dynamic, going aggressive->lax as more channels
|
||||||
|
// are opened.
|
||||||
|
const DefaultConfTarget = 3
|
||||||
|
|
||||||
// Node node is an interface which represents n abstract vertex within the
|
// Node node is an interface which represents n abstract vertex within the
|
||||||
// channel graph. All nodes should have at least a single edge to/from them
|
// channel graph. All nodes should have at least a single edge to/from them
|
||||||
// within the graph.
|
// within the graph.
|
||||||
|
4
pilot.go
4
pilot.go
@ -84,7 +84,9 @@ func (c *chanController) OpenChannel(target *btcec.PublicKey,
|
|||||||
|
|
||||||
// With the connection established, we'll now establish our connection
|
// With the connection established, we'll now establish our connection
|
||||||
// to the target peer, waiting for the first update before we exit.
|
// to the target peer, waiting for the first update before we exit.
|
||||||
feePerKw, err := c.server.cc.feeEstimator.EstimateFeePerKW(3)
|
feePerKw, err := c.server.cc.feeEstimator.EstimateFeePerKW(
|
||||||
|
autopilot.DefaultConfTarget,
|
||||||
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user