Browse Source

explain modes css fix

v0.25
pbca26 7 years ago
parent
commit
dabf7399e7
  1. 4
      gui/startup/index.html
  2. 3
      routes/shepherd/dashboardUpdate.js

4
gui/startup/index.html

@ -41,9 +41,9 @@
onClick="toggleMainWindowHelp()"
class="close-btn"
src="../EasyDEX-GUI/assets/mainWindow/img/fa-close.png">
<strong>Be aware:</strong> Native mode requires to download the whole blockchain data to a local disk before you can start using it. This may take from <strong>several hours to a day</strong> depending on your connection and hardware. Please <u>try to keep Agama running</u> until the whole process is finished.
<strong>Be aware:</strong> <u>Native mode</u> requires to download the whole blockchain data to a local disk before you can start using it. This may take from <strong>several hours to a day</strong> depending on your connection and hardware. Please <u>try to keep Agama running</u> until the whole process is finished.
<br /><br />
If you need a quick and easy access to your funds try SPV mode which doesn't require any blockchain to be loaded locally. All data is requested on demand from Electrum servers.
If you need a quick and easy access to your funds try <u>Lite (SPV) mode</u> which doesn't require any blockchain to be loaded locally. All data is requested on demand from Electrum servers. <strong>To gain access to Lite mode toggle "Enable experimental features" in Settings.</strong>
</div>
<div class="mode-desc native">Full blockchain mode</div>
<button

3
routes/shepherd/dashboardUpdate.js

@ -70,7 +70,8 @@ module.exports = (shepherd) => {
.then(result => {
if (result[0] &&
result[0].length &&
result[0][0]) {
result[0][0].length &&
result[0][0].length > 10) {
const calcBalance = (result, json) => {
if (json &&
json.length &&

Loading…
Cancel
Save