lnwallet: remove extraneous logging messages

This commit is contained in:
Olaoluwa Osuntokun 2016-09-20 16:10:41 -07:00
parent 9bd5105ae5
commit 7310d0a0f7
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2

@ -1,7 +1,6 @@
package lnwallet package lnwallet
import ( import (
"encoding/hex"
"errors" "errors"
"fmt" "fmt"
"sync" "sync"
@ -961,9 +960,6 @@ func (l *LightningWallet) handleFundingCounterPartySigs(msg *addCounterPartySigs
return 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 // Verify that we've received a valid signature from the remote party
// for our version of the commitment transaction. // for our version of the commitment transaction.
sig, err := btcec.ParseSignature(theirCommitSig, btcec.S256()) sig, err := btcec.ParseSignature(theirCommitSig, btcec.S256())