Prevent negative z balances,Hide 0-balance addresses from the balances table,Rename new address to next address

This commit is contained in:
Denio
2019-12-03 19:42:06 +01:00
parent 25317b753d
commit 8d51375107
5 changed files with 46 additions and 15 deletions

View File

@@ -71,6 +71,9 @@ public:
bool operator> (const CAmount& other) const {
return this->amount > other.amount;
}
bool operator== (const qint64 other) const {
return this->amount == other;
}
};
#endif // CAMOUNT_H