Revert "don't send feeless transactions"

This reverts commit 9a2f7a86fc.
This commit is contained in:
langerhans 2014-05-04 17:02:08 +02:00
parent cec014e710
commit aecf0170a9

View file

@ -704,7 +704,7 @@ int64_t GetMinFee(const CTransaction& tx, unsigned int nBytes, bool fAllowFree,
int64_t nMinFee = (1 + (int64_t)nBytes / 1000) * nBaseFee;
if (fAllowFree && mode != GMF_SEND)
if (fAllowFree)
{
// Free transaction area
if (nBytes < 26000)