This commit is contained in:
jl777
2017-09-18 16:03:14 +02:00
parent e73a3943b3
commit 5f27c121a9

View File

@@ -4498,7 +4498,7 @@ void static ProcessGetData(CNode* pfrom)
uint256 hash; int32_t z;
hash = block.GetHash();
for (z=0; z<32; z++)
printf("%02x",((uint8_t *)&hash)[z]);
fprintf(stderr,"%02x",((uint8_t *)&hash)[z]);
fprintf(stderr," send block %d\n",komodo_block2height(&block));
pfrom->PushMessage("block", block);
}