rippled
Loading...
Searching...
No Matches
CashCheck.h
1#pragma once
2
3#include <xrpld/app/tx/detail/Transactor.h>
4
5namespace xrpl {
6
7class CashCheck : public Transactor
8{
9public:
11
12 explicit CashCheck(ApplyContext& ctx) : Transactor(ctx)
13 {
14 }
15
16 static NotTEC
17 preflight(PreflightContext const& ctx);
18
19 static TER
20 preclaim(PreclaimContext const& ctx);
21
22 TER
23 doApply() override;
24};
25
27
28} // namespace xrpl
State information when applying a tx.
CashCheck(ApplyContext &ctx)
Definition CashCheck.h:12
static NotTEC preflight(PreflightContext const &ctx)
Definition CashCheck.cpp:17
static constexpr ConsequencesFactoryType ConsequencesFactory
Definition CashCheck.h:10
static TER preclaim(PreclaimContext const &ctx)
Definition CashCheck.cpp:48
TER doApply() override
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:5
State information when determining if a tx is likely to claim a fee.
Definition Transactor.h:53
State information when preflighting a tx.
Definition Transactor.h:15