diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2011-05-28 16:43:49 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2011-05-28 16:43:49 +0200 |
commit | 12a1256c1d33bb4580cd8ab7284d117ca42ec97c (patch) | |
tree | ce5f60975dd22e39d724f712bfc507fb58346746 /src/main.cpp | |
parent | a452d9ee2dea7e606ec102b0a1a411da4e5e5a91 (diff) |
bugfix: accept free transactions
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index f5f1ffd4ac..793cf77f10 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 |