rippled
Loading...
Searching...
No Matches
tx/transactors/dex/OfferCancel.h
1#pragma once
2
3#include <xrpl/protocol/TxFlags.h>
4#include <xrpl/tx/Transactor.h>
5
6namespace xrpl {
7
8class OfferCancel : public Transactor
9{
10public:
12
13 explicit OfferCancel(ApplyContext& ctx) : Transactor(ctx)
14 {
15 }
16
17 static NotTEC
18 preflight(PreflightContext const& ctx);
19
20 static TER
21 preclaim(PreclaimContext const& ctx);
22
23 TER
24 doApply() override;
25};
26
27} // namespace xrpl
State information when applying a tx.
static TER preclaim(PreclaimContext const &ctx)
TER doApply() override
static NotTEC preflight(PreflightContext const &ctx)
static constexpr ConsequencesFactoryType ConsequencesFactory
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:57
State information when preflighting a tx.
Definition Transactor.h:14