This commit is contained in:
Denis Angell
2023-12-05 10:51:19 +01:00
parent e326e11a6f
commit a8ff49739d
2 changed files with 0 additions and 4 deletions

View File

@@ -349,7 +349,6 @@ Batch::preclaim(PreclaimContext const& ctx)
auto const txtype = safe_cast<TxType>(tt);
auto const stx =
STTx(txtype, [&txn](STObject& obj) { obj = std::move(txn); });
std::cout << "Batch::preclaim" << TERtoInt(preflightResponses[i]) << "\n";
PreclaimContext const pcctx(
ctx.app, ctx.view, preflightResponses[i], stx, ctx.flags, ctx.j);
auto const response = invoke_preclaim(pcctx);
@@ -378,7 +377,6 @@ Batch::doApply()
auto const stx =
STTx(txtype, [&txn](STObject& obj) { obj = std::move(txn); });
std::cout << "Batch::doApply" << TERtoInt(preclaimResponses[i]) << "\n";
ApplyContext actx(
ctx_.app,
ctx_.base_,

View File

@@ -75,8 +75,6 @@ checkValidity(
if (rules.enabled(featureBatch) && applyFlags == tapPREFLIGHT_BATCH)
{
auto const tt = tx.getFieldU16(sfTransactionType);
std::cout << "tt: " << tt << "\n";
// batched transactions do not contain signatures
if (tx.isFieldPresent(sfTxnSignature))
return {Validity::SigBad, "Batch txn contains signature."};