show error message if partial signatures do not match wallet on finalizing psbt

This commit is contained in:
Craig Raw 2022-03-27 11:00:25 +02:00
parent 5e31cdb7ac
commit 761ec0659f

View file

@ -951,8 +951,13 @@ public class HeadersController extends TransactionFormController implements Init
private void finalizePSBT() {
if(headersForm.getPsbt() != null && headersForm.getPsbt().isSigned() && !headersForm.getPsbt().isFinalized()) {
try {
headersForm.getSigningWallet().finalise(headersForm.getPsbt());
EventManager.get().post(new PSBTFinalizedEvent(headersForm.getPsbt()));
} catch(IllegalArgumentException e) {
AppServices.showErrorDialog("Cannot finalize PSBT", e.getMessage());
throw e;
}
}
}