mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-04 21:36:45 +00:00
show error message if partial signatures do not match wallet on finalizing psbt
This commit is contained in:
parent
5e31cdb7ac
commit
761ec0659f
1 changed files with 7 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue