mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-02-03 10:44:33 +00:00
Let limitfreerelay=0 reject ALL free transactions
This commit is contained in:
parent
ce99358f4a
commit
9c9f5c1303
@ -754,7 +754,7 @@ bool CTxMemPool::accept(CTransaction &tx, bool fCheckInputs, bool fLimitFree,
|
||||
nLastTime = nNow;
|
||||
// -limitfreerelay unit is thousand-bytes-per-minute
|
||||
// At default rate it would take over a month to fill 1GB
|
||||
if (dFreeCount > GetArg("-limitfreerelay", 15)*10*1000)
|
||||
if (dFreeCount >= GetArg("-limitfreerelay", 15)*10*1000)
|
||||
return error("CTxMemPool::accept() : free transaction rejected by rate limiter");
|
||||
if (fDebug)
|
||||
printf("Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount+nSize);
|
||||
|
Loading…
x
Reference in New Issue
Block a user