(the practical limit before the change was 32 megabytes– the maximum size of a message in the p2p protocol). in https://bitcoinfoundation.org/2014/10/a-scalability-roadmap/
can someone know how does 32M come from?
(the practical limit before the change was 32 megabytes– the maximum size of a message in the p2p protocol). in https://bitcoinfoundation.org/2014/10/a-scalability-roadmap/
can someone know how does 32M come from?
which 15M?
sorry 32M
Its the maximum size a network message can be. Larger messages are considered invalid whether they are of type block, inv, or anything.
i check, it should be static const unsigned int MAX_SIZE = 0x02000000; // Message size if (nMessageSize > MAX_SIZE) { LogPrintf("CMessageHeader::IsValid() : (%s, %u bytes) nMessageSize > MAX_SIZE\n", GetCommand(), nMessageSize); return false; }
Yes, 0x02000000 == 32M
thx