diff --git a/lnwallet/wallet.go b/lnwallet/wallet.go index ecced934..68b22790 100644 --- a/lnwallet/wallet.go +++ b/lnwallet/wallet.go @@ -1,7 +1,6 @@ package lnwallet import ( - "encoding/hex" "errors" "fmt" "sync" @@ -961,9 +960,6 @@ func (l *LightningWallet) handleFundingCounterPartySigs(msg *addCounterPartySigs return } - walletLog.Infof("sighash verify: %v", hex.EncodeToString(sigHash)) - walletLog.Infof("initer verifying tx: %v", spew.Sdump(commitTx)) - // Verify that we've received a valid signature from the remote party // for our version of the commitment transaction. sig, err := btcec.ParseSignature(theirCommitSig, btcec.S256())