diff --git a/lnd.go b/lnd.go index 9842b77d..b2685f90 100644 --- a/lnd.go +++ b/lnd.go @@ -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) {