Lazy calculate vchKeyedNetGroup in CNode::GetKeyedNetGroup.
This is a (very small) performance improvement.
Fix mentioned by gmaxwell in #8086
Lazy calculate vchKeyedNetGroup in CNode::GetKeyedNetGroup.
364@@ -363,6 +365,8 @@ class CNode
365 CBloomFilter* pfilter;
366 int nRefCount;
367 NodeId id;
368+
369+ std::vector<unsigned char> vchKeyedNetGroup;