xrpld
Loading...
Searching...
No Matches
last_ledger_sequence.h
1#pragma once
2
3#include <test/jtx/Env.h>
4#include <test/jtx/JTx.h>
5
6#include <cstdint>
7
8namespace xrpl::test::jtx {
9
11{
12private:
14
15public:
16 explicit LastLedgerSeq(std::uint32_t num) : num_(num)
17 {
18 }
19
20 void
21 operator()(Env&, JTx& jt) const;
22};
23
24} // namespace xrpl::test::jtx
A transaction testing environment.
Definition Env.h:161
Execution context for applying a JSON transaction.
Definition JTx.h:27
void operator()(Env &, JTx &jt) const