diff options
| author | Cozz Lovan <[email protected]> | 2014-07-05 07:30:06 +0200 |
|---|---|---|
| committer | Cozz Lovan <[email protected]> | 2014-07-08 05:09:19 +0200 |
| commit | d88af560111863c3e9c1ae855dcc287f04dffb02 (patch) | |
| tree | 2dead75696e53fd1804f5fe478506e34da625f76 /src/wallet.cpp | |
| parent | Merge pull request #4480 (diff) | |
| download | discoin-d88af560111863c3e9c1ae855dcc287f04dffb02.tar.xz discoin-d88af560111863c3e9c1ae855dcc287f04dffb02.zip | |
Fee fixes
Diffstat (limited to 'src/wallet.cpp')
| -rw-r--r-- | src/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp index ea99b89a5..a54494f93 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1484,7 +1484,7 @@ bool CWallet::CreateTransaction(const vector<pair<CScript, int64_t> >& vecSend, break; // Small enough, and priority high enough, to send for free - if (dPriority >= dPriorityNeeded) + if (dPriorityNeeded > 0 && dPriority >= dPriorityNeeded) break; // Include more fee and try again. |