This commit is contained in:
jl777
2017-02-02 15:52:58 +02:00
parent 3d938854ff
commit d5666fdad7
2 changed files with 5 additions and 0 deletions

View File

@@ -621,6 +621,7 @@ int8_t komodo_minerid(int32_t height)
return(i);
}
}
printf("try electednotary %p\n",pindex);
return(komodo_electednotary(pubkey33,height));
}

View File

@@ -126,9 +126,13 @@ int32_t komodo_electednotary(uint8_t *pubkey33,int32_t height)
{
char pubkeystr[67]; int32_t i;
init_hexbytes_noT(pubkeystr,pubkey33,33);
printf("%s vs\n",pubkeystr);
for (i=0; i<sizeof(Notaries_elected)/sizeof(*Notaries_elected); i++)
{
if ( strcmp(pubkeystr,(char *)Notaries_elected[i][1]) == 0 )
return(i);
printf("%s\n",(char *)Notaries_elected[i][1]);
}
return(-1);
}