xrpld
Loading...
Searching...
No Matches
account_txn_id.h
1#pragma once
2
3#include <test/jtx/Env.h>
4#include <test/jtx/JTx.h>
5
6#include <xrpl/basics/base_uint.h>
7
8namespace xrpl::test::jtx {
9
11{
12private:
14
15public:
16 explicit AccountTxnId(uint256 const& hash) : hash_(hash)
17 {
18 }
19
20 void
21 operator()(Env&, JTx& jt) const;
22};
23} // namespace xrpl::test::jtx
A transaction testing environment.
Definition Env.h:161
BaseUInt< 256 > uint256
Definition base_uint.h:580
AccountTxnId(uint256 const &hash)
void operator()(Env &, JTx &jt) const
Execution context for applying a JSON transaction.
Definition JTx.h:27