mirror of
https://codeberg.org/r4v3r23/mysu.git
synced 2024-11-09 20:53:47 +01:00
Add retry system if connection fails.
This commit is contained in:
parent
a2b7e27e8b
commit
7109442ad0
@ -87,6 +87,11 @@ public class MainActivity extends AppCompatActivity implements MoneroHandlerThre
|
||||
this.blockchainService.refreshBlockchain();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onConnectionFail() {
|
||||
System.out.println("CONNECT FAILED");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPasswordSuccess(String password) {
|
||||
File walletFile = new File(getApplicationInfo().dataDir, Constants.WALLET_NAME);
|
||||
|
@ -55,9 +55,10 @@ public class MoneroHandlerThread extends Thread implements WalletListener {
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
WalletManager.getInstance().setDaemon(Node.fromString(DefaultNodes.XMRTW.getUri()));
|
||||
wallet.init(0);
|
||||
WalletManager.getInstance().setProxy("127.0.0.1:9050");
|
||||
WalletManager.getInstance().setDaemon(Node.fromString(DefaultNodes.MONERUJO_ONION.getUri()));
|
||||
wallet.setProxy("127.0.0.1:9050");
|
||||
wallet.init(0);
|
||||
wallet.setListener(this);
|
||||
wallet.startRefresh();
|
||||
}
|
||||
@ -85,10 +86,23 @@ public class MoneroHandlerThread extends Thread implements WalletListener {
|
||||
refresh();
|
||||
}
|
||||
|
||||
int triesLeft = 5;
|
||||
|
||||
@Override
|
||||
public void refreshed() {
|
||||
wallet.setSynchronized();
|
||||
refresh();
|
||||
Wallet.ConnectionStatus status = wallet.getFullStatus().getConnectionStatus();
|
||||
if(status == Wallet.ConnectionStatus.ConnectionStatus_Disconnected || status == null) {
|
||||
if(triesLeft > 0) {
|
||||
wallet.startRefresh();
|
||||
triesLeft--;
|
||||
} else {
|
||||
listener.onConnectionFail();
|
||||
}
|
||||
} else {
|
||||
BlockchainService.getInstance().setDaemonHeight(wallet.getDaemonBlockChainHeight());
|
||||
wallet.setSynchronized();
|
||||
refresh();
|
||||
}
|
||||
}
|
||||
|
||||
private void refresh() {
|
||||
@ -105,5 +119,6 @@ public class MoneroHandlerThread extends Thread implements WalletListener {
|
||||
|
||||
public interface Listener {
|
||||
void onRefresh();
|
||||
void onConnectionFail();
|
||||
}
|
||||
}
|
||||
|
@ -21,6 +21,7 @@
|
||||
android:layout_marginEnd="24dp"
|
||||
android:layout_marginBottom="32dp"
|
||||
android:hint="Password"
|
||||
android:inputType="textPassword"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/unlock_wallet_button"/>
|
||||
<ImageButton
|
||||
|
Loading…
Reference in New Issue
Block a user