lnd: use a default temporary static fee of 50 sat/byte for BTC

This commit is contained in:
Olaoluwa Osuntokun
2017-05-16 19:12:21 -07:00
parent 75858a604a
commit 67791755af
2 changed files with 6 additions and 3 deletions

2
lnd.go
View File

@@ -149,7 +149,7 @@ func lndMain() error {
signer := wc
bio := wc
fundingSigner := wc
estimator := lnwallet.StaticFeeEstimator{FeeRate: 250}
estimator := lnwallet.StaticFeeEstimator{FeeRate: 50}
// Create, and start the lnwallet, which handles the core payment
// channel logic, and exposes control via proxy state machines.