rippled
Loading...
Searching...
No Matches
domain.h
1#pragma once
2
3#include <test/jtx/Env.h>
4
5namespace ripple {
6namespace test {
7namespace jtx {
8
10class domain
11{
12private:
14
15public:
16 explicit domain(uint256 const& v) : v_(v)
17 {
18 }
19
20 void
21 operator()(Env&, JTx& jt) const;
22};
23
24} // namespace jtx
25} // namespace test
26} // namespace ripple
A transaction testing environment.
Definition Env.h:102
Set the domain on a JTx.
Definition domain.h:11
void operator()(Env &, JTx &jt) const
Definition domain.cpp:10
domain(uint256 const &v)
Definition domain.h:16
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