diff src/main.cpp @ 654:a8a8e3a6f08a draft

bugfix: accept free transactions
author Pieter Wuille <pieter.wuille@gmail.com>
date Sat, 28 May 2011 16:43:49 +0200
parents 6046cfa5296f
children 7c199878b235
line wrap: on
line diff
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -731,7 +731,7 @@
         }
 
         // 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