rippled
Loading...
Searching...
No Matches
invoice_id.h
1#pragma once
2
3#include <test/jtx/Env.h>
4
5namespace xrpl {
6namespace test {
7namespace jtx {
8
10{
11private:
13
14public:
15 explicit invoice_id(uint256 const& hash) : hash_(hash)
16 {
17 }
18
19 void
20 operator()(Env&, JTx& jt) const;
21};
22} // namespace jtx
23} // namespace test
24} // namespace xrpl
A transaction testing environment.
Definition Env.h:119
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:5
Execution context for applying a JSON transaction.
Definition JTx.h:25
void operator()(Env &, JTx &jt) const
Definition invoice_id.cpp:8
invoice_id(uint256 const &hash)
Definition invoice_id.h:15