diff --git a/bip-0078.mediawiki b/bip-0078.mediawiki index 2acee5d2..d070178d 100644 --- a/bip-0078.mediawiki +++ b/bip-0078.mediawiki @@ -442,7 +442,7 @@ public async Task RequestPayjoin( //////////// if (proposal.CheckSanity() is List 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();