rippled
Loading...
Searching...
No Matches
txflags.h
1#ifndef XRPL_TEST_JTX_TXFLAGS_H_INCLUDED
2#define XRPL_TEST_JTX_TXFLAGS_H_INCLUDED
3
4#include <test/jtx/Env.h>
5
6namespace ripple {
7namespace test {
8namespace jtx {
9
12{
13private:
15
16public:
17 explicit txflags(std::uint32_t v) : v_(v)
18 {
19 }
20
21 void
22 operator()(Env&, JTx& jt) const;
23};
24
25} // namespace jtx
26} // namespace test
27} // namespace ripple
28
29#endif
A transaction testing environment.
Definition Env.h:102
Set the flags on a JTx.
Definition txflags.h:12
void operator()(Env &, JTx &jt) const
Definition txflags.cpp:10
txflags(std::uint32_t v)
Definition txflags.h:17
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