random fixes

This commit is contained in:
m2049r 2021-04-19 17:39:12 +02:00
parent c131cb81d7
commit 22c66678c2
No known key found for this signature in database
GPG Key ID: 4386E69AF260078D
3 changed files with 9 additions and 10 deletions

View File

@ -1,8 +1,8 @@
# MonerujoAE # MonerujoWOW
The Android AEON Wallet The Android WOW Wallet
### QUICKSTART ### QUICKSTART
- Download the APK for the most current release [here](https://gitlab.com/monerujo-io/wowwallet) and install it - Download the APK for the most current release [here](https://gitlab.com/monerujo-io/wowwallet/-/releases) and install it
- Run the App and select "Generate Wallet" to create a new wallet or recover a wallet - Run the App and select "Generate Wallet" to create a new wallet or recover a wallet
- See the [FAQ](doc/FAQ.md) - See the [FAQ](doc/FAQ.md)
@ -10,12 +10,11 @@ The Android AEON Wallet
Help us translate Monerujo! You can find instructions [On Taiga](https://taiga.getmonero.org/project/erciccione-monero-localization/wiki/monerujo), and if you need help/support, open an issue or contact the Localization Workgroup. You can find us on the freenode channel `#monero-translations`, also relayed on [MatterMost](https://mattermost.getmonero.org/monero/channels/monero-translations), and matrix/riot. Help us translate Monerujo! You can find instructions [On Taiga](https://taiga.getmonero.org/project/erciccione-monero-localization/wiki/monerujo), and if you need help/support, open an issue or contact the Localization Workgroup. You can find us on the freenode channel `#monero-translations`, also relayed on [MatterMost](https://mattermost.getmonero.org/monero/channels/monero-translations), and matrix/riot.
### Disclaimer ### Disclaimer
You may lose all your AEON if you use this App. You may lose all your WOW if you use this App. Always make sure to have your seed words safe.
### HOW TO BUILD ### HOW TO BUILD
Check out [the instructions](doc/BUILDING-external-libs.md) Check out [the instructions](doc/BUILDING-external-libs.md)
### Donations ### Donations
- WOW: Wo4g66NnQsd2XvoLjn9RATRK6QS4w1UXmZrQJwRKn8HX9kqNpoAMbqKi9JmQMz5pMbRdW6Zahjcu57JXcYWk4zVk2w47gu6Dq - WOW: Wo4g66NnQsd2XvoLjn9RATRK6QS4w1UXmZrQJwRKn8HX9kqNpoAMbqKi9JmQMz5pMbRdW6Zahjcu57JXcYWk4zVk2w47gu6Dq (OpenAlias: monerujo.io)
- XMR: 4AdkPJoxn7JCvAby9szgnt93MSEwdnxdhaASxbTBm6x5dCwmsDep2UYN4FhStDn5i11nsJbpU7oj59ahg8gXb1Mg3viqCuk - XMR: 4AdkPJoxn7JCvAby9szgnt93MSEwdnxdhaASxbTBm6x5dCwmsDep2UYN4FhStDn5i11nsJbpU7oj59ahg8gXb1Mg3viqCuk (OpenAlias: monerujo.io)
- AEON: WmsfCJfmd6QQ84Rfb2mD1y7ryBzvTiQ8MMngmgRjxDMCCkeuChA9B9ZRNZyQyjgH1zdQMBXeQB9vZhUwPHmLGhyo2nMoE2ARv

View File

@ -80,10 +80,10 @@ public class Helper {
static public final String NOCRAZYPASS_FLAGFILE = ".nocrazypass"; static public final String NOCRAZYPASS_FLAGFILE = ".nocrazypass";
static public final String BASE_CRYPTO = Crypto.XMR.getSymbol(); static public final String BASE_CRYPTO = Crypto.XMR.getSymbol();
static public final int XMR_DECIMALS = 11;
static public final boolean SHOW_EXCHANGERATES = false; static public final boolean SHOW_EXCHANGERATES = false;
static public final boolean ALLOW_SHIFT = false; static public final boolean ALLOW_SHIFT = false;
static public final int XMR_DECIMALS = 11;
static private final String WALLET_DIR = "wallets"; static private final String WALLET_DIR = "wallets";
static private final String MONERO_DIR = "monero"; static private final String MONERO_DIR = "monero";

View File

@ -26,10 +26,10 @@ import java.util.TimeZone;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
public class RestoreHeight { public class RestoreHeight {
static private RestoreHeight Singleton = null;
static final int DIFFICULTY_TARGET = 300; // seconds static final int DIFFICULTY_TARGET = 300; // seconds
static private RestoreHeight Singleton = null;
static public RestoreHeight getInstance() { static public RestoreHeight getInstance() {
if (Singleton == null) { if (Singleton == null) {
synchronized (RestoreHeight.class) { synchronized (RestoreHeight.class) {