aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorlangerhans <[email protected]>2014-05-04 17:02:08 +0200
committerlangerhans <[email protected]>2014-05-04 17:02:08 +0200
commitaecf0170a9689b45529c3c6cd032277a7cdc654c (patch)
tree48acb587f66a66f02024555be54cdaef0e79285b /src/main.cpp
parentMerge pull request #501 from leofidus/coverage-tests (diff)
downloaddiscoin-aecf0170a9689b45529c3c6cd032277a7cdc654c.tar.xz
discoin-aecf0170a9689b45529c3c6cd032277a7cdc654c.zip
Revert "don't send feeless transactions"
This reverts commit 9a2f7a86fca6e243db7745cb1b15b35ce1b97b2e.
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index dd769286a..5b83a6d44 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -704,7 +704,7 @@ int64_t GetMinFee(const CTransaction& tx, unsigned int nBytes, bool fAllowFree,
int64_t nMinFee = (1 + (int64_t)nBytes / 1000) * nBaseFee;
- if (fAllowFree && mode != GMF_SEND)
+ if (fAllowFree)
{
// Free transaction area
if (nBytes < 26000)