rippled
Loading...
Searching...
No Matches
seq.cpp
1#include <test/jtx/seq.h>
2
3#include <xrpl/protocol/jss.h>
4
5namespace ripple {
6namespace test {
7namespace jtx {
8
9void
11{
12 if (!manual_)
13 return;
14 jt.fill_seq = false;
15 if (num_)
16 jt[jss::Sequence] = *num_;
17}
18
19} // namespace jtx
20} // namespace test
21} // namespace ripple
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
std::optional< std::uint32_t > num_
Definition seq.h:18
void operator()(Env &, JTx &jt) const
Definition seq.cpp:10