mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-03-26 17:51:46 +01:00
show error message if partial signatures do not match wallet on finalizing psbt
This commit is contained in:
parent
5e31cdb7ac
commit
761ec0659f
@ -951,8 +951,13 @@ public class HeadersController extends TransactionFormController implements Init
|
||||
|
||||
private void finalizePSBT() {
|
||||
if(headersForm.getPsbt() != null && headersForm.getPsbt().isSigned() && !headersForm.getPsbt().isFinalized()) {
|
||||
headersForm.getSigningWallet().finalise(headersForm.getPsbt());
|
||||
EventManager.get().post(new PSBTFinalizedEvent(headersForm.getPsbt()));
|
||||
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…
x
Reference in New Issue
Block a user