mirror of
https://github.com/Qortal/qortal.git
synced 2025-03-13 19:12:33 +00:00
Catch JSON exceptions in PirateChainWalletController.
This could prevent additional wallets from being initialized if connection was lost while syncing an existing one.
This commit is contained in:
parent
1233ba6703
commit
10b0f0a054
@ -4,6 +4,7 @@ import com.rust.litewalletjni.LiteWalletJni;
|
|||||||
import org.apache.commons.io.FileUtils;
|
import org.apache.commons.io.FileUtils;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
|
import org.json.JSONException;
|
||||||
import org.json.JSONObject;
|
import org.json.JSONObject;
|
||||||
import org.qortal.arbitrary.ArbitraryDataFile;
|
import org.qortal.arbitrary.ArbitraryDataFile;
|
||||||
import org.qortal.arbitrary.ArbitraryDataReader;
|
import org.qortal.arbitrary.ArbitraryDataReader;
|
||||||
@ -99,6 +100,8 @@ public class PirateChainWalletController extends Thread {
|
|||||||
LOGGER.debug("Syncing Pirate Chain wallet...");
|
LOGGER.debug("Syncing Pirate Chain wallet...");
|
||||||
String response = LiteWalletJni.execute("sync", "");
|
String response = LiteWalletJni.execute("sync", "");
|
||||||
LOGGER.debug("sync response: {}", response);
|
LOGGER.debug("sync response: {}", response);
|
||||||
|
|
||||||
|
try {
|
||||||
JSONObject json = new JSONObject(response);
|
JSONObject json = new JSONObject(response);
|
||||||
if (json.has("result")) {
|
if (json.has("result")) {
|
||||||
String result = json.getString("result");
|
String result = json.getString("result");
|
||||||
@ -108,6 +111,9 @@ public class PirateChainWalletController extends Thread {
|
|||||||
this.currentWallet.setReady(true);
|
this.currentWallet.setReady(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} catch (JSONException e) {
|
||||||
|
LOGGER.info("Unable to interpret JSON", e);
|
||||||
|
}
|
||||||
|
|
||||||
// Rate limit sync attempts
|
// Rate limit sync attempts
|
||||||
Thread.sleep(30000);
|
Thread.sleep(30000);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user