diff options
| author | Suhas Daftuar <[email protected]> | 2015-11-24 08:53:14 -0500 |
|---|---|---|
| committer | Suhas Daftuar <[email protected]> | 2015-11-24 08:53:14 -0500 |
| commit | e30443244a7a50f2db70e593ec8a57e5086db3d9 (patch) | |
| tree | cf2d82fbe7ddf299852aaf04c7ca55f374855a7b /src/wallet/wallet.cpp | |
| parent | Expose RPC calls for estimatesmart functions (diff) | |
| download | discoin-e30443244a7a50f2db70e593ec8a57e5086db3d9.tar.xz discoin-e30443244a7a50f2db70e593ec8a57e5086db3d9.zip | |
Pass reference to estimateSmartFee and cleanup whitespace
Diffstat (limited to 'src/wallet/wallet.cpp')
| -rw-r--r-- | src/wallet/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 9152a59cd..cd5f9042f 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -2036,7 +2036,7 @@ bool CWallet::CreateTransaction(const vector<CRecipient>& vecSend, CWalletTx& wt double dPriorityNeeded = mempool.estimateSmartPriority(nTxConfirmTarget); // Require at least hard-coded AllowFree. if (dPriority >= dPriorityNeeded && AllowFree(dPriority)) - break; + break; } CAmount nFeeNeeded = GetMinimumFee(nBytes, nTxConfirmTarget, mempool); |