diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-07-07 10:02:58 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-07-07 10:14:10 +0200 |
| commit | 4ea8f632fe35ca1f2400dc099e3e86d5adc178d2 (patch) | |
| tree | 272f76624f88ae32bffcb20e2b884bda7e49c2de /src | |
| parent | Merge pull request #4459 (diff) | |
| parent | Remove unused variable (diff) | |
| download | discoin-4ea8f632fe35ca1f2400dc099e3e86d5adc178d2.tar.xz discoin-4ea8f632fe35ca1f2400dc099e3e86d5adc178d2.zip | |
Merge pull request #4467
1f740dd Remove unused variable (R E Broadley)
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/coincontroldialog.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/qt/coincontroldialog.cpp b/src/qt/coincontroldialog.cpp index e0a524a55..c73cf416a 100644 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/coincontroldialog.cpp @@ -523,9 +523,6 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) dPriority = dPriorityInputs / (nBytes - nBytesInputs + (nQuantityUncompressed * 29)); // 29 = 180 - 151 (uncompressed public keys are over the limit. max 151 bytes of the input are ignored for priority) sPriorityLabel = CoinControlDialog::getPriorityLabel(mempool, dPriority); - // Fee - int64_t nFee = payTxFee.GetFee(max((unsigned int)1000, nBytes)); - // Min Fee nPayFee = CWallet::GetMinimumFee(nBytes, nTxConfirmTarget, mempool); |