lnd: configure fmgr with PublishTransaction

This commit is contained in:
Conner Fromknecht 2018-03-10 17:28:04 -08:00
parent 2e1dcd316c
commit e754db44d2
No known key found for this signature in database
GPG Key ID: 39DE78FBE6ACB0EF

9
lnd.go
View File

@ -275,10 +275,11 @@ func lndMain() error {
return err
}
fundingMgr, err := newFundingManager(fundingConfig{
IDKey: idPrivKey.PubKey(),
Wallet: activeChainControl.wallet,
Notifier: activeChainControl.chainNotifier,
FeeEstimator: activeChainControl.feeEstimator,
IDKey: idPrivKey.PubKey(),
Wallet: activeChainControl.wallet,
PublishTransaction: activeChainControl.wallet.PublishTransaction,
Notifier: activeChainControl.chainNotifier,
FeeEstimator: activeChainControl.feeEstimator,
SignMessage: func(pubKey *btcec.PublicKey,
msg []byte) (*btcec.Signature, error) {