This commit is contained in:
jl777
2018-05-08 12:17:48 +03:00
parent 0c03fd07bd
commit 51f0e5008d

View File

@@ -730,6 +730,16 @@ int32_t komodo_check_deposit(int32_t height,const CBlock& block,uint32_t prevtim
if ( strangeout != 0 || notmatched != 0 )
{
fprintf(stderr,">>>>>>>>>>>>> DUST ht.%d strangout.%d notmatched.%d <<<<<<<<<\n",height,strangeout,notmatched);
if ( height > 1000000 && strangeout != 0 )
return(-1);
}
else
{
script = (uint8_t *)block.vtx[0].vout[0].scriptPubKey.data();
n = komodo_electednotary(&num,script+1,height,0);
fprintf(stderr,">>>>>>>>>>>>> matched ht.%d notmatched.%d n.%d <<<<<<<<<\n",height,notmatched,n);
if ( height > 1000000 )
return(-1 * (n >= 0));
}
}
else