mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
sweepbatcher: format pkscript as hex
This commit is contained in:
parent
e7d5172a79
commit
59a3af31cc
1 changed files with 1 additions and 1 deletions
|
|
@ -604,7 +604,7 @@ func CheckSignedTx(unsignedTx, signedTx *wire.MsgTx, inputAmt btcutil.Amount,
|
|||
unsignedOut := unsignedTx.TxOut[0]
|
||||
signedOut := signedTx.TxOut[0]
|
||||
if !bytes.Equal(unsignedOut.PkScript, signedOut.PkScript) {
|
||||
return fmt.Errorf("mismatch of output pkScript: %v, %v",
|
||||
return fmt.Errorf("mismatch of output pkScript: %x, %x",
|
||||
unsignedOut.PkScript, signedOut.PkScript)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue