lnd: use a single instance of a FeeEstimator daemon-wide

This commit is contained in:
Olaoluwa Osuntokun 2017-05-16 19:11:43 -07:00
parent 8b432f8ca6
commit 75858a604a
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
2 changed files with 2 additions and 2 deletions

@ -688,7 +688,7 @@ func (r *rpcServer) fetchActiveChannel(chanPoint wire.OutPoint) (*lnwallet.Light
// Otherwise, we create a fully populated channel state machine which
// uses the db channel as backing storage.
return lnwallet.NewLightningChannel(r.server.lnwallet.Signer, nil,
lnwallet.StaticFeeEstimator{FeeRate: 250}, dbChan)
r.server.feeEstimator, dbChan)
}
// forceCloseChan executes a unilateral close of the target channel by

@ -305,7 +305,7 @@ func newServer(listenAddrs []string, notifier chainntnfs.ChainNotifier,
if chanID.IsChanPoint(channel.ChanID) {
return lnwallet.NewLightningChannel(
wallet.Signer, notifier,
lnwallet.StaticFeeEstimator{FeeRate: 250},
s.feeEstimator,
channel)
}
}