rippled
Loading...
Searching...
No Matches
DepositPreauth.h
1#pragma once
2
3#include <xrpld/app/tx/detail/Transactor.h>
4
5namespace xrpl {
6
8{
9public:
11
13 {
14 }
15
16 static bool
18
19 static NotTEC
20 preflight(PreflightContext const& ctx);
21
22 static TER
23 preclaim(PreclaimContext const& ctx);
24
25 TER
26 doApply() override;
27
28 // Interface used by DeleteAccount
29 static TER
31};
32
33} // namespace xrpl
A generic endpoint for log messages.
Definition Journal.h:40
State information when applying a tx.
Writeable view to a ledger, for applying a transaction.
Definition ApplyView.h:114
static TER removeFromLedger(ApplyView &view, uint256 const &delIndex, beast::Journal j)
static constexpr ConsequencesFactoryType ConsequencesFactory
static NotTEC preflight(PreflightContext const &ctx)
static bool checkExtraFeatures(PreflightContext const &ctx)
DepositPreauth(ApplyContext &ctx)
static TER preclaim(PreclaimContext const &ctx)
ApplyView & view()
Definition Transactor.h:128
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