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