rippled
Loading...
Searching...
No Matches
DeleteOracle.h
1#pragma once
2
3#include <xrpld/app/tx/detail/Transactor.h>
4
5namespace xrpl {
6
17{
18public:
20
21 explicit DeleteOracle(ApplyContext& ctx) : Transactor(ctx)
22 {
23 }
24
25 static NotTEC
26 preflight(PreflightContext const& ctx);
27
28 static TER
29 preclaim(PreclaimContext const& ctx);
30
31 TER
32 doApply() override;
33
34 static TER
36};
37
39
40} // 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
Price Oracle is a system that acts as a bridge between a blockchain network and the external world,...
static NotTEC preflight(PreflightContext const &ctx)
static constexpr ConsequencesFactoryType ConsequencesFactory
static TER preclaim(PreclaimContext const &ctx)
TER doApply() override
static TER deleteOracle(ApplyView &view, std::shared_ptr< SLE > const &sle, AccountID const &account, beast::Journal j)
DeleteOracle(ApplyContext &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