From 12a1256c1d33bb4580cd8ab7284d117ca42ec97c Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 28 May 2011 16:43:49 +0200 Subject: [PATCH] bugfix: accept free transactions --- src/main.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index f5f1ffd..793cf77 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -731,7 +731,7 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi } // Don't accept it if it can't get into a block - if (nFees < GetMinFee(1000, false, true)) + if (nFees < GetMinFee(1000, true, true)) return error("AcceptToMemoryPool() : not enough fees"); // Continuously rate-limit free transactions -- 1.7.1