mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
misc
This commit is contained in:
@@ -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_,
|
||||
|
||||
@@ -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."};
|
||||
|
||||
Reference in New Issue
Block a user