xrpld
Loading...
Searching...
No Matches
tags.h
1#pragma once
2
3namespace xrpl::test::jtx {
4
5struct NoneT
6{
7 NoneT() = default;
8};
9static NoneT const kNone;
10
12{
13 AutofillT() = default;
14};
15static AutofillT const kAutofill;
16
18{
19 DisabledT() = default;
20};
21static DisabledT const kDisabled;
22
25{
26 IncrementT() = default;
27};
28
30
31} // namespace xrpl::test::jtx
static NoneT const kNone
Definition tags.h:9
static DisabledT const kDisabled
Definition tags.h:21
static IncrementT const kIncrement
Definition tags.h:29
static AutofillT const kAutofill
Definition tags.h:15
Used for Fee() calls that use an owner reserve increment.
Definition tags.h:25