Skip to content

Commit

Permalink
revert changes to WalletModel::getAnonymizedBalance()
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Duffield committed Jan 27, 2015
1 parent 11ec24b commit 7fafe5d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/qt/walletmodel.cpp
Expand Up @@ -70,8 +70,7 @@ qint64 WalletModel::getBalance(const CCoinControl *coinControl) const

qint64 WalletModel::getAnonymizedBalance() const
{
qint64 ret = wallet->GetAnonymizedBalance() - (COIN/10);
if (ret < 0) ret = 0;
qint64 ret = wallet->GetAnonymizedBalance();
return ret;
}

Expand Down

0 comments on commit 7fafe5d

Please sign in to comment.