diff options
| author | Pieter Wuille <[email protected]> | 2011-05-28 16:43:49 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2011-05-28 16:43:49 +0200 |
| commit | 12a1256c1d33bb4580cd8ab7284d117ca42ec97c (patch) | |
| tree | ce5f60975dd22e39d724f712bfc507fb58346746 /src/main.cpp | |
| parent | Merge remote branch 'bluematt/dpifix' (diff) | |
| download | discoin-12a1256c1d33bb4580cd8ab7284d117ca42ec97c.tar.xz discoin-12a1256c1d33bb4580cd8ab7284d117ca42ec97c.zip | |
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 f5f1ffd4a..793cf77f1 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 |