Browse Source

bugfix: accept free transactions

0.8
Pieter Wuille 13 years ago
parent
commit
12a1256c1d
  1. 2
      src/main.cpp

2
src/main.cpp

@ -731,7 +731,7 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi @@ -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

Loading…
Cancel
Save