1
0
mirror of https://github.com/bitcoin/bips.git synced 2024-11-19 01:40:05 +01:00
This commit is contained in:
nicolas.dorier 2020-06-19 13:24:14 +09:00
parent 3a16c24f5e
commit 93c655a149
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE

View File

@ -442,7 +442,7 @@ public async Task<PSBT> RequestPayjoin(
////////////
if (proposal.CheckSanity() is List<PSBTError> errors && errors.Count > 0)
throw new PayjoinSenderException($"The proposal PSBT is not insance ({errors[0]})");
throw new PayjoinSenderException($"The proposal PSBT is not sane ({errors[0]})");
var proposalGlobalTx = proposal.GetGlobalTransaction();
// Verify that the transaction version, and nLockTime are unchanged.
@ -571,7 +571,7 @@ int GetVirtualSize(ScriptPubKeyType? scriptPubKeyType)
}
}
// Finalized the signedPSBT and remove confidential information
// Finalize the signedPSBT and remove confidential information
PSBT CreateOriginalPSBT(PSBT signedPSBT)
{
var original = signedPSBT.Clone();