Sync pirate wallet every 30 seconds instead of 60, to match behaviour of official wallet.

This commit is contained in:
CalDescent 2022-05-31 10:09:37 +02:00
parent 85a26ae052
commit 6dd44317c4

View File

@ -65,7 +65,7 @@ public class PirateChainWalletController extends Thread {
} }
// Rate limit sync attempts // Rate limit sync attempts
Thread.sleep(60000); Thread.sleep(30000);
// Save wallet if needed // Save wallet if needed
Long now = NTP.getTime(); Long now = NTP.getTime();