This commit is contained in:
jl777
2018-04-13 13:10:29 +03:00
parent 47cc7f6cb3
commit 346d0b0d78

View File

@@ -146,7 +146,6 @@ bool CheckProofOfWork(int32_t height,uint8_t *pubkey33,uint256 hash, unsigned in
if ( height > 34000 && ASSETCHAINS_SYMBOL[0] == 0 ) // 0 -> non-special notary if ( height > 34000 && ASSETCHAINS_SYMBOL[0] == 0 ) // 0 -> non-special notary
{ {
special = komodo_chosennotary(&notaryid,height,pubkey33,timestamp); special = komodo_chosennotary(&notaryid,height,pubkey33,timestamp);
flag = komodo_eligiblenotary(pubkeys,mids,&nonzpkeys,height);
for (i=0; i<33; i++) for (i=0; i<33; i++)
{ {
if ( pubkey33[i] != 0 ) if ( pubkey33[i] != 0 )
@@ -157,6 +156,9 @@ bool CheckProofOfWork(int32_t height,uint8_t *pubkey33,uint256 hash, unsigned in
//fprintf(stderr,"ht.%d null pubkey checkproof return\n",height); //fprintf(stderr,"ht.%d null pubkey checkproof return\n",height);
return(true); // will come back via different path with pubkey set return(true); // will come back via different path with pubkey set
} }
flag = komodo_eligiblenotary(pubkeys,mids,&nonzpkeys,height);
if ( 0 )
{
special2 = komodo_is_special(height,pubkey33,timestamp); special2 = komodo_is_special(height,pubkey33,timestamp);
fprintf(stderr,"ht.%d notaryid.%d special.%d flag.%d special2.%d\n",height,notaryid,special,flag,special2); fprintf(stderr,"ht.%d notaryid.%d special.%d flag.%d special2.%d\n",height,notaryid,special,flag,special2);
if ( notaryid >= 0 ) if ( notaryid >= 0 )
@@ -170,6 +172,18 @@ bool CheckProofOfWork(int32_t height,uint8_t *pubkey33,uint256 hash, unsigned in
else if ( height == 790833 ) else if ( height == 790833 )
flag = 1; flag = 1;
} }
}
else if ( notaryid >= 0 )
{
for (i=0; i<65; i++)
if ( notaryid == mids[i] )
break;
if ( i == 65 )
flag = 1;
else flag = 0;
if ( (height % KOMODO_ELECTION_GAP) > 64 || (height % KOMODO_ELECTION_GAP) == 0 )
flag = 0;
}
if ( flag != 0 || special2 > 0 ) if ( flag != 0 || special2 > 0 )
{ {
fprintf(stderr,"EASY MINING ht.%d\n",height); fprintf(stderr,"EASY MINING ht.%d\n",height);