Prevent rounding for small amounts

This commit is contained in:
Aditya Kulkarni
2018-11-21 14:17:11 -08:00
parent 9776987971
commit 6175c3cde5
5 changed files with 10 additions and 13 deletions

View File

@@ -25,8 +25,8 @@ public:
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
private:
QList<std::tuple<QString, QString>>* modeldata = nullptr;
QList<UnspentOutput>* utxos = nullptr;
QList<std::tuple<QString, double>>* modeldata = nullptr;
QList<UnspentOutput>* utxos = nullptr;
bool loading = true;
};