mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
display error on sendpin correctly
This commit is contained in:
parent
1bab07fc5f
commit
836bd6bc40
1 changed files with 1 additions and 1 deletions
|
@ -376,7 +376,7 @@ public class DevicePane extends TitledDescriptionPane {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
sendPinService.setOnFailed(workerStateEvent -> {
|
sendPinService.setOnFailed(workerStateEvent -> {
|
||||||
setError(sendPinService.getException().getMessage(), null);
|
setError("Error", sendPinService.getException().getMessage());
|
||||||
enterPinButton.setDisable(false);
|
enterPinButton.setDisable(false);
|
||||||
});
|
});
|
||||||
setDescription("Unlocking...");
|
setDescription("Unlocking...");
|
||||||
|
|
Loading…
Reference in a new issue