mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-04 21:36:45 +00:00
fix aopp alert dialog on windows
This commit is contained in:
parent
b7522420cf
commit
3bf480234f
1 changed files with 1 additions and 1 deletions
|
@ -257,7 +257,7 @@ public class ReceiveController extends WalletFormController implements Initializ
|
||||||
Address address = getWalletForm().getWallet().getAddress(currentEntry.getNode());
|
Address address = getWalletForm().getWallet().getAddress(currentEntry.getNode());
|
||||||
String signature = messageSignDialog.getSignature();
|
String signature = messageSignDialog.getSignature();
|
||||||
aopp.sendProofOfAddress(address, signature);
|
aopp.sendProofOfAddress(address, signature);
|
||||||
AppServices.showAlertDialog("Proof of Address Sent", "Proof of ownership of address " + address + " has been successfully sent to " + aopp.getCallback().getHost() + ".", Alert.AlertType.INFORMATION);
|
AppServices.showAlertDialog("Proof of Address Sent", "Proof of ownership of address\n" + address + "\nhas been successfully sent to\n" + aopp.getCallback().getHost() + ".", Alert.AlertType.INFORMATION);
|
||||||
}
|
}
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
AppServices.showErrorDialog("Cannot send proof of ownership", e.getMessage());
|
AppServices.showErrorDialog("Cannot send proof of ownership", e.getMessage());
|
||||||
|
|
Loading…
Reference in a new issue