rippled
Loading...
Searching...
No Matches
last_ledger_sequence.h
1#ifndef XRPL_TEST_JTX_LAST_LEDGER_SEQUENCE_H_INCLUDED
2#define XRPL_TEST_JTX_LAST_LEDGER_SEQUENCE_H_INCLUDED
3
4#include <test/jtx/Env.h>
5
6namespace ripple {
7namespace test {
8namespace jtx {
9
11{
12private:
14
15public:
16 explicit last_ledger_seq(std::uint32_t num) : num_(num)
17 {
18 }
19
20 void
21 operator()(Env&, JTx& jt) const;
22};
23
24} // namespace jtx
25} // namespace test
26} // namespace ripple
27
28#endif
A transaction testing environment.
Definition Env.h:102
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:6
Execution context for applying a JSON transaction.
Definition JTx.h:26
void operator()(Env &, JTx &jt) const