mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-04 18:18:16 +02:00
Merge pull request #6233 from guggero/sign-psbt-utxo-error-message
rpcwallet: disallow empty UTXO pk script [skip ci]
This commit is contained in:
commit
0bef42e93c
@ -618,6 +618,16 @@ func (r *RPCKeyRing) remoteSign(tx *wire.MsgTx, signDesc *input.SignDescriptor,
|
||||
PubKey: signDesc.KeyDesc.PubKey.SerializeCompressed(),
|
||||
}}
|
||||
|
||||
// We need to specify a pk script in the witness UTXO, otherwise
|
||||
// the field becomes invalid when serialized as a PSBT. To avoid
|
||||
// running into a generic "Invalid PSBT serialization format"
|
||||
// error later, we return a more descriptive error now.
|
||||
if len(in.WitnessUtxo.PkScript) == 0 {
|
||||
return nil, fmt.Errorf("error assembling UTXO " +
|
||||
"information, output not known to wallet and " +
|
||||
"no UTXO pk script provided in sign descriptor")
|
||||
}
|
||||
|
||||
default:
|
||||
return nil, fmt.Errorf("error assembling UTXO information, "+
|
||||
"wallet returned err='%v' and sign descriptor is "+
|
||||
|
Loading…
x
Reference in New Issue
Block a user