diff --git a/README.md b/README.md index 244d3f6..aaedd36 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,11 @@ An Android Wallet for Wownero height="80">](https://f-droid.org/packages/com.wownero.wownerujo/) Get it on Google Play +## Run your own mobile full node for improved speed and privacy + +- [CyberWOW] +- [Wownero daemon] + ## QUICKSTART - Download it with the F-Droid app or the Google Play app. - Run it and click `⊕` to create a new wallet or recover a wallet. @@ -14,11 +19,6 @@ An Android Wallet for Wownero ## Disclaimer You may lose all your Wowneroj if you use this app. -## Random Notes -- Based off Wownero v0.5. -- Use your own daemon. -- Screen stays on until first sync is complete. - ## HOW TO BUILD If you want to build the external libs yourself (recommended) check out [the instructions](doc/BUILDING-external-libs.md). @@ -37,3 +37,5 @@ Then, fire up Android Studio and build the APK. [beta channel]:https://play.google.com/apps/testing/com.wownero.wownerujo/join +[CyberWOW]: https://play.google.com/store/apps/details?id=org.wownero.cyberwow +[Wownero daemon]: https://github.com/enerc/wownero-daemon/releases diff --git a/app/src/main/java/com/wownero/wownerujo/LoginFragment.java b/app/src/main/java/com/wownero/wownerujo/LoginFragment.java index 88f340e..f8ace89 100644 --- a/app/src/main/java/com/wownero/wownerujo/LoginFragment.java +++ b/app/src/main/java/com/wownero/wownerujo/LoginFragment.java @@ -374,18 +374,11 @@ public class LoginFragment extends Fragment implements WalletInfoAdapter.OnInter private static final String PREF_DAEMON_TESTNET = "daemon_testnet"; - private static final String PREF_DAEMONLIST_MAINNET - = "node.wowne.ro" - + ";node.pwned.systems" - + ";node.wowkira.com" - + ";localhost" - ; - - private static final String PREF_DAEMONLIST_STAGENET = - "node.wowne.ro"; - - private static final String PREF_DAEMONLIST_TESTNET = - "node.wowne.ro"; + private static final String PREF_DAEMONLIST_MAINNET = "localhost"; + + private static final String PREF_DAEMONLIST_STAGENET = ""; + + private static final String PREF_DAEMONLIST_TESTNET = ""; private NodeList daemonMainNet; private NodeList daemonStageNet;