rippled
Loading...
Searching...
No Matches
DepositPreauth.h
1#ifndef XRPL_TX_DEPOSIT_PREAUTH_H_INCLUDED
2#define XRPL_TX_DEPOSIT_PREAUTH_H_INCLUDED
3
4#include <xrpld/app/tx/detail/Transactor.h>
5
6namespace ripple {
7
9{
10public:
12
14 {
15 }
16
17 static bool
19
20 static NotTEC
21 preflight(PreflightContext const& ctx);
22
23 static TER
24 preclaim(PreclaimContext const& ctx);
25
26 TER
27 doApply() override;
28
29 // Interface used by DeleteAccount
30 static TER
33 uint256 const& delIndex,
35};
36
37} // namespace ripple
38
39#endif
A generic endpoint for log messages.
Definition Journal.h:41
State information when applying a tx.
Writeable view to a ledger, for applying a transaction.
Definition ApplyView.h:124
static bool checkExtraFeatures(PreflightContext const &ctx)
static NotTEC preflight(PreflightContext const &ctx)
DepositPreauth(ApplyContext &ctx)
static constexpr ConsequencesFactoryType ConsequencesFactory
static TER removeFromLedger(ApplyView &view, uint256 const &delIndex, beast::Journal j)
static TER preclaim(PreclaimContext const &ctx)
ApplyView & view()
Definition Transactor.h:144
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:6
State information when determining if a tx is likely to claim a fee.
Definition Transactor.h:61
State information when preflighting a tx.
Definition Transactor.h:16