diff --git a/silentdragonlite b/silentdragonlite new file mode 100755 index 0000000..ffde6d1 Binary files /dev/null and b/silentdragonlite differ diff --git a/src/controller.cpp b/src/controller.cpp index 4475e1b..3c01f1b 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -344,7 +344,7 @@ void Controller::refreshTransactions() { for (auto o: it["outgoing_metadata"].get()) { QString address = QString::fromStdString(o["address"]); - double amount = -1 * o ["value"].get(); // Sent items are -ve + double amount = -1 * o ["value"].get() /100000000; // Sent items are -ve // Check for Memos diff --git a/src/settings.cpp b/src/settings.cpp index 5db8d8f..10be877 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -313,7 +313,7 @@ bool Settings::removeFromhushConf(QString confLocation, QString option) { } double Settings::getMinerFee() { - return 0.01; + return 0.0001; } double Settings::getZboardAmount() {