From 9a2f7a86fca6e243db7745cb1b15b35ce1b97b2e Mon Sep 17 00:00:00 2001 From: Jannis Froese Date: Thu, 1 May 2014 21:10:19 +0200 Subject: [PATCH] don't send feeless transactions --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 5b83a6d44..dd769286a 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) + if (fAllowFree && mode != GMF_SEND) { // Free transaction area if (nBytes < 26000)