fix to find hush wallet.dat at startup

This commit is contained in:
DenioD
2019-10-27 11:03:41 +01:00
parent 0e4562859b
commit 96785da984
3 changed files with 2 additions and 2 deletions

View File

@@ -344,7 +344,7 @@ void Controller::refreshTransactions() {
for (auto o: it["outgoing_metadata"].get<json::array_t>()) {
QString address = QString::fromStdString(o["address"]);
double amount = -1 * o ["value"].get<json::number_unsigned_t>(); // Sent items are -ve
double amount = -1 * o ["value"].get<json::number_float_t>() /100000000; // Sent items are -ve
// Check for Memos

View File

@@ -313,7 +313,7 @@ bool Settings::removeFromhushConf(QString confLocation, QString option) {
}
double Settings::getMinerFee() {
return 0.01;
return 0.0001;
}
double Settings::getZboardAmount() {