mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-10 15:40:22 -04:00
select online, registered, and least used arbitrator (#400)
support registering and unregistering arbitrators over grpc maker always sends InitTradeRequest to arbitrator share original contract for comparision remove backup arbitator from model cleanup trade states
This commit is contained in:
parent
757c7cf19c
commit
3727d12ef6
51 changed files with 472 additions and 382 deletions
|
@ -192,7 +192,7 @@ public class NotificationCenter {
|
|||
message = Res.get("notification.trade.accepted", role);
|
||||
}
|
||||
|
||||
if (trade instanceof BuyerTrade && phase.ordinal() == Trade.Phase.DEPOSIT_UNLOCKED.ordinal())
|
||||
if (trade instanceof BuyerTrade && phase.ordinal() == Trade.Phase.DEPOSITS_UNLOCKED.ordinal())
|
||||
message = Res.get("notification.trade.confirmed");
|
||||
else if (trade instanceof SellerTrade && phase.ordinal() == Trade.Phase.PAYMENT_SENT.ordinal())
|
||||
message = Res.get("notification.trade.paymentStarted");
|
||||
|
|
|
@ -162,7 +162,7 @@ public class BuyerStep2View extends TradeStepView {
|
|||
switch (state) {
|
||||
case BUYER_CONFIRMED_IN_UI_PAYMENT_SENT:
|
||||
busyAnimation.play();
|
||||
statusLabel.setText("Confirming payment sent. This can take up to a few minutes depending on connection speed. Please wait...");
|
||||
statusLabel.setText("Confirming payment sent. This can take up to a few minutes. Please wait...");
|
||||
break;
|
||||
case BUYER_SENT_PAYMENT_SENT_MSG:
|
||||
busyAnimation.play();
|
||||
|
|
|
@ -121,7 +121,7 @@ public class SellerStep3View extends TradeStepView {
|
|||
switch (state) {
|
||||
case SELLER_CONFIRMED_IN_UI_PAYMENT_RECEIPT:
|
||||
busyAnimation.play();
|
||||
statusLabel.setText(Res.get("Confirming payment received. This can take up to a few minutes depending on connection speed. Please wait..."));
|
||||
statusLabel.setText(Res.get("Confirming payment received. This can take up to a few minutes. Please wait..."));
|
||||
break;
|
||||
case SELLER_PUBLISHED_PAYOUT_TX:
|
||||
case SELLER_SENT_PAYOUT_TX_PUBLISHED_MSG:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue