rippled
Loading...
Searching...
No Matches
tx/transactors/did/DIDSet.h
1#pragma once
2
3#include <xrpl/tx/Transactor.h>
4
5namespace xrpl {
6
7class DIDSet : public Transactor
8{
9public:
11
12 explicit DIDSet(ApplyContext& ctx) : Transactor(ctx)
13 {
14 }
15
16 static NotTEC
17 preflight(PreflightContext const& ctx);
18
19 TER
20 doApply() override;
21};
22
23} // namespace xrpl
State information when applying a tx.
static constexpr ConsequencesFactoryType ConsequencesFactory
DIDSet(ApplyContext &ctx)
TER doApply() override
Definition DIDSet.cpp:85
static NotTEC preflight(PreflightContext const &ctx)
Definition DIDSet.cpp:27
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:5
State information when preflighting a tx.
Definition Transactor.h:14