This commit is contained in:
blackjok3r
2018-11-23 03:04:30 +08:00
parent eb533cf7d7
commit 46f857e730

View File

@@ -42,10 +42,14 @@ bool CheckTxAuthority(const CTransaction &tx, CrosschainAuthority auth)
if (!seen[i]) {
if (memcmp(pk, auth.notaries[i], 33) == 0) {
seen[i] = 1;
printf("seennotary..%i\n",i);
goto found;
} else {
printf("notary.%i is not valid!\n",i);
}
}
}
return false;
found:;
}