Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1952,7 +1952,6 @@ public void onFault(String errorMessage) {
///////////////////////////////////////////////////////////////////////////////////////////

private void maybeUpdatePersistedOffers() {
// We need to clone to avoid ConcurrentModificationException
List<OpenOffer> openOffersClone = getOpenOffers();
openOffersClone.forEach(originalOpenOffer -> {
Offer originalOffer = originalOpenOffer.getOffer();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public abstract class XmrWalletBase {

// private
private boolean testReconnectOnStartup = false; // test reconnecting on startup while syncing so the wallet is blocked
private String testReconnectMonerod1 = "http://node.community.rino.io:18081";
private String testReconnectMonerod1 = "http://xmr-node.cakewallet.com:18081";
private String testReconnectMonerod2 = "http://nodex.monerujo.io:18081";

public XmrWalletBase() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1467,8 +1467,8 @@ private void doMaybeInitMainWallet(boolean sync, int numSyncAttempts) {
log.info("Monero wallet unlocked balance={}, pending balance={}, total balance={}", unlockedBalance, balance.subtract(unlockedBalance), balance);
}

// reapply connection after wallet synced (might reinitialize wallet on new thread)
ThreadUtils.execute(() -> onConnectionChanged(xmrConnectionService.getConnection()), THREAD_ID);
// reapply connection after wallet synced (might reinitialize wallet with proxy)
onConnectionChanged(xmrConnectionService.getConnection());

// reset internal state if main wallet was swapped
resetIfWalletChanged();
Expand Down
Loading