try again

This commit is contained in:
blackjok3r
2018-09-24 20:14:35 +08:00
parent 6f610e9bdd
commit 250cb3ffd4

View File

@@ -34,13 +34,14 @@ NotarisationsInBlock ScanBlockNotarisations(const CBlock &block, int nHeight)
if (!eval->CheckNotaryInputs(tx, nHeight, block.nTime)) if (!eval->CheckNotaryInputs(tx, nHeight, block.nTime))
continue; continue;
} else if (authority == CROSSCHAIN_STAKED) { } else if (authority == CROSSCHAIN_STAKED) {
printf("Authorised notarisation data for %s \n",data.symbol);
if (!CheckTxAuthority(tx, auth_STAKED)) if (!CheckTxAuthority(tx, auth_STAKED))
printf("Authorised notarisation data for %s \n",data.symbol);
continue; continue;
} }
if (parsed) { if (parsed) {
vNotarisations.push_back(std::make_pair(tx.GetHash(), data)); vNotarisations.push_back(std::make_pair(tx.GetHash(), data));
printf("Added notarisation data for %s \n",data.symbol);
//printf("Parsed a notarisation for: %s, txid:%s, ccid:%i, momdepth:%i\n", //printf("Parsed a notarisation for: %s, txid:%s, ccid:%i, momdepth:%i\n",
// data.symbol, tx.GetHash().GetHex().data(), data.ccId, data.MoMDepth); // data.symbol, tx.GetHash().GetHex().data(), data.ccId, data.MoMDepth);
//if (!data.MoMoM.IsNull()) printf("MoMoM:%s\n", data.MoMoM.GetHex().data()); //if (!data.MoMoM.IsNull()) printf("MoMoM:%s\n", data.MoMoM.GetHex().data());
@@ -48,7 +49,6 @@ 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("Added notarisation data\n");
return vNotarisations; return vNotarisations;
} }