Skip to content

Commit

Permalink
fix transaction fee in coin control
Browse files Browse the repository at this point in the history
  • Loading branch information
presstab committed Oct 30, 2014
1 parent b7c2d29 commit e4fe895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qt/coincontroldialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -615,8 +615,8 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog)
sPriorityLabel = CoinControlDialog::getPriorityLabel(dPriority);

// Fee
int64 nFee = nTransactionFee * (1 + (int64)nBytes / 1000);
int64 nFee = nTransactionFee;
// Min Fee
int64 nMinFee = txDummy.GetMinFee(1, false, GMF_SEND, nBytes);

Expand Down

0 comments on commit e4fe895

Please sign in to comment.