Browse Source

It was a grave error to comment this line out, which makes txn_count always zero and skips important code

pull/141/head
Team ChainStrike 6 years ago
parent
commit
5ddd3bfe0c
  1. 2
      src/komodo_validation011.h

2
src/komodo_validation011.h

@ -1195,7 +1195,7 @@ void komodo_connectblock(CBlockIndex *pindex,CBlock& block)
if ( pindex != 0 )
{
height = pindex->nHeight;
//txn_count = block.vtx.size();
txn_count = block.vtx.size();
//fprintf(stderr, "txn_count=%d\n", txn_count);
for (i=0; i<txn_count; i++)
{

Loading…
Cancel
Save