This commit is contained in:
blackjok3r
2018-09-24 20:06:33 +08:00
parent 108c04eaf6
commit 6f610e9bdd

View File

@@ -35,6 +35,7 @@ NotarisationsInBlock ScanBlockNotarisations(const CBlock &block, int nHeight)
continue; continue;
} else if (authority == CROSSCHAIN_STAKED) { } else if (authority == CROSSCHAIN_STAKED) {
if (!CheckTxAuthority(tx, auth_STAKED)) if (!CheckTxAuthority(tx, auth_STAKED))
printf("Authorised notarisation data for %s \n",data.symbol);
continue; continue;
} }
@@ -47,7 +48,7 @@ NotarisationsInBlock ScanBlockNotarisations(const CBlock &block, int nHeight)
LogPrintf("WARNING: Couldn't parse notarisation for tx: %s at height %i\n", LogPrintf("WARNING: Couldn't parse notarisation for tx: %s at height %i\n",
tx.GetHash().GetHex().data(), nHeight); tx.GetHash().GetHex().data(), nHeight);
} }
printf("Authorised and added notarisation data for %s \n",data.symbol); printf("Added notarisation data\n");
return vNotarisations; return vNotarisations;
} }