rippled
Loading...
Searching...
No Matches
tx/transactors/oracle/OracleSet.h
1#pragma once
2
3#include <xrpl/tx/Transactor.h>
4
5namespace xrpl {
6
16class OracleSet : public Transactor
17{
18public:
20
21 explicit OracleSet(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
35} // namespace xrpl
State information when applying a tx.
Price Oracle is a system that acts as a bridge between a blockchain network and the external world,...
TER doApply() override
static TER preclaim(PreclaimContext const &ctx)
Definition OracleSet.cpp:43
static NotTEC preflight(PreflightContext const &ctx)
Definition OracleSet.cpp:22
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