rippled
Loading...
Searching...
No Matches
invoice_id.h
1#ifndef XRPL_TEST_JTX_INVOICE_ID_H_INCLUDED
2#define XRPL_TEST_JTX_INVOICE_ID_H_INCLUDED
3
4#include <test/jtx/Env.h>
5
6namespace ripple {
7namespace test {
8namespace jtx {
9
11{
12private:
14
15public:
16 explicit invoice_id(uint256 const& hash) : hash_(hash)
17 {
18 }
19
20 void
21 operator()(Env&, JTx& jt) const;
22};
23} // namespace jtx
24} // namespace test
25} // namespace ripple
26#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
invoice_id(uint256 const &hash)
Definition invoice_id.h:16
void operator()(Env &, JTx &jt) const
Definition invoice_id.cpp:8