Do not crash reference implementation if there is no address in the bip21

This commit is contained in:
nicolas.dorier 2020-06-18 11:04:59 +09:00
parent a2a085cdb4
commit a3fbc6c620
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE

View File

@ -424,6 +424,7 @@ public async Task<PSBT> RequestPayjoin(
for (int i = 0; i < originalGlobalTx.Outputs.Count; i++)
{
if (optionalParameters.DisableOutputSubstitution ||
bip21.Address == null ||
signedPSBT.Outputs[i].ScriptPubKey != bip21.Address.ScriptPubKey)
ourOutputs.Enqueue((originalGlobalTx.Outputs[i], signedPSBT.Outputs[i]));
}