Do not process tx inv's in blocksonly mode

This commit is contained in:
Patick Strateman 2015-11-14 04:44:59 -08:00
parent 4044f07d1c
commit 420fa8143a
1 changed files with 1 additions and 1 deletions

View File

@ -4218,7 +4218,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
bool fAlreadyHave = AlreadyHave(inv);
LogPrint("net", "got inv: %s %s peer=%d\n", inv.ToString(), fAlreadyHave ? "have" : "new", pfrom->id);
if (!fAlreadyHave && !fImporting && !fReindex && inv.type != MSG_BLOCK)
if (!fAlreadyHave && !fImporting && !fReindex && inv.type != MSG_BLOCK && !GetBoolArg("-blocksonly", false))
pfrom->AskFor(inv);
if (inv.type == MSG_BLOCK) {