1 2016-08-31 14:07:14 <thokon00> Hey guys!
 2 2016-08-31 14:07:21 <thokon00> https://github.com/bitcoin/bitcoin/blob/master/src/main.cpp#L3395
 3 2016-08-31 14:07:34 <thokon00> Specifically: block.vtx.size() > MAX_BLOCK_BASE_SIZE
 4 2016-08-31 14:07:46 <thokon00> Does it make sense to check the vectors size against MAX_BLOCK_BASE_SIZE which has a completely different meaning?
 5 2016-08-31 14:07:57 <thokon00> MAX_BLOCK_BASE_SIZE is the number bytes not the number of transactions.
 6 2016-08-31 14:08:08 <thokon00> Wouldn't it make sense to define a separate constant for that? Like: #define MAX_TX_PER_BLOCK 10000
 7 2016-08-31 14:16:47 <thokon00> Or better in consensus.h: static const unsigned int MAX_TX_PER_BLOCK = 10000;
 8 2016-08-31 14:17:01 <thokon00> and check against that...
 9 2016-08-31 15:35:46 <p2me> are we allowed to share code here? if so, where's the best place to upload to?
10 2016-08-31 15:37:03 <p2me> i have a small python script which should: connect to a node, send version message, receive back verack message but i'm really struggling to get back anything from the node
11 2016-08-31 15:40:44 <murch> p2me: You can ask questions about Bitcoin related code on Bitcoin.Stackexchange.com
12 2016-08-31 15:42:35 <p2me> thanks, i'll give that a shot