mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 04:42:36 -03:00
print large orphan warning BEFORE deleting pvMsg
This commit is contained in:
parent
451c3957fe
commit
c283b3c569
1 changed files with 1 additions and 1 deletions
|
@ -180,8 +180,8 @@ bool AddOrphanTx(const CDataStream& vMsg)
|
|||
// at most 500 megabytes of orphans:
|
||||
if (pvMsg->size() > 5000)
|
||||
{
|
||||
delete pvMsg;
|
||||
printf("ignoring large orphan tx (size: %u, hash: %s)\n", pvMsg->size(), hash.ToString().substr(0,10).c_str());
|
||||
delete pvMsg;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue