diff --git a/STInteger_8cpp_source.html b/STInteger_8cpp_source.html index 32e5c529a7..1512c83129 100644 --- a/STInteger_8cpp_source.html +++ b/STInteger_8cpp_source.html @@ -283,7 +283,7 @@ $(function() {
ripple::debugLog
beast::Journal debugLog()
Returns a debug journal.
Definition: Log.cpp:452
ripple::STInteger::getJson
Json::Value getJson(JsonOptions) const override
Definition: STInteger.cpp:64
ripple::sfTransactionType
const SF_UINT16 sfTransactionType
-
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:410
+
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:396
std::to_string
T to_string(T... args)
ripple::STI_UINT16
@ STI_UINT16
Definition: SField.h:60
std::errc
diff --git a/STParsedJSON_8cpp_source.html b/STParsedJSON_8cpp_source.html index 54385382c5..5feb2c89a9 100644 --- a/STParsedJSON_8cpp_source.html +++ b/STParsedJSON_8cpp_source.html @@ -1118,7 +1118,7 @@ $(function() {
ripple::sfTransactionType
const SF_UINT16 sfTransactionType
ripple::STObject::FieldErr
Definition: STObject.h:646
ripple::STParsedJSONDetail::out_of_range
static Json::Value out_of_range(std::string const &object, std::string const &field)
Definition: STParsedJSON.cpp:106
-
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:410
+
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:396
Json::Value::isArrayOrNull
bool isArrayOrNull() const
Definition: json_value.cpp:1021
ripple::STArray
Definition: STArray.h:28
std::to_string
T to_string(T... args)
diff --git a/STTx_8cpp_source.html b/STTx_8cpp_source.html index b598720538..64d44ecbb3 100644 --- a/STTx_8cpp_source.html +++ b/STTx_8cpp_source.html @@ -692,7 +692,7 @@ $(function() {
ripple::sfMemos
const SField sfMemos
ripple::passesLocalChecks
bool passesLocalChecks(STObject const &st, std::string &reason)
Definition: STTx.cpp:530
ripple::STBase::emplace
static STBase * emplace(std::size_t n, void *buf, T &&val)
Definition: STBase.h:165
-
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:410
+
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:396
ripple::PublicKey
A public key.
Definition: PublicKey.h:59
ripple::STObject::getAccountID
AccountID getAccountID(SField const &field) const
Definition: STObject.cpp:589
ripple::JsonOptions::none
@ none
diff --git a/TxFormats_8cpp_source.html b/TxFormats_8cpp_source.html index 8f30ba072c..7697bb6046 100644 --- a/TxFormats_8cpp_source.html +++ b/TxFormats_8cpp_source.html @@ -95,243 +95,243 @@ $(function() {
24 
25 TxFormats::TxFormats()
26 {
-
27  // Fields shared by all txFormats:
-
28  static const std::initializer_list<SOElement> commonFields{
-
29  {sfTransactionType, soeREQUIRED},
-
30  {sfFlags, soeOPTIONAL},
-
31  {sfSourceTag, soeOPTIONAL},
-
32  {sfAccount, soeREQUIRED},
-
33  {sfSequence, soeREQUIRED},
-
34  {sfPreviousTxnID, soeOPTIONAL}, // emulate027
-
35  {sfLastLedgerSequence, soeOPTIONAL},
-
36  {sfAccountTxnID, soeOPTIONAL},
-
37  {sfFee, soeREQUIRED},
-
38  {sfOperationLimit, soeOPTIONAL},
-
39  {sfMemos, soeOPTIONAL},
-
40  {sfSigningPubKey, soeREQUIRED},
-
41  {sfTxnSignature, soeOPTIONAL},
-
42  {sfSigners, soeOPTIONAL}, // submit_multisigned
-
43  {sfNetworkID, soeOPTIONAL},
-
44  };
-
45 
-
46  add(jss::AccountSet,
-
47  ttACCOUNT_SET,
-
48  {
-
49  {sfEmailHash, soeOPTIONAL},
-
50  {sfWalletLocator, soeOPTIONAL},
-
51  {sfWalletSize, soeOPTIONAL},
-
52  {sfMessageKey, soeOPTIONAL},
-
53  {sfDomain, soeOPTIONAL},
-
54  {sfTransferRate, soeOPTIONAL},
-
55  {sfSetFlag, soeOPTIONAL},
-
56  {sfClearFlag, soeOPTIONAL},
-
57  {sfTickSize, soeOPTIONAL},
-
58  {sfTicketSequence, soeOPTIONAL},
-
59  {sfNFTokenMinter, soeOPTIONAL},
-
60  },
-
61  commonFields);
+
27 #pragma push_macro("PSEUDO_TXN_COMMON_FIELDS")
+
28 
+
29  // clang-format off
+
30 
+
31  #define PSEUDO_TXN_COMMON_FIELDS \
+
32  {sfTransactionType, soeREQUIRED}, \
+
33  {sfFlags, soeOPTIONAL}, \
+
34  {sfSourceTag, soeOPTIONAL}, \
+
35  {sfAccount, soeREQUIRED}, \
+
36  {sfSequence, soeREQUIRED}, \
+
37  {sfPreviousTxnID, soeOPTIONAL}, /* emulate027 */ \
+
38  {sfLastLedgerSequence, soeOPTIONAL}, \
+
39  {sfAccountTxnID, soeOPTIONAL}, \
+
40  {sfFee, soeREQUIRED}, \
+
41  {sfOperationLimit, soeOPTIONAL}, \
+
42  {sfMemos, soeOPTIONAL}, \
+
43  {sfSigningPubKey, soeREQUIRED}, \
+
44  {sfTxnSignature, soeOPTIONAL}, \
+
45  {sfSigners, soeOPTIONAL}, /* submit_multisigned */ \
+
46  {sfNetworkID, soeOPTIONAL}
+
47 
+
48  // clang-format on
+
49 
+
50  // Fields shared by all pseudo-transaction txFormats:
+
51  static const std::initializer_list<SOElement> pseudoCommonFields{
+
52  PSEUDO_TXN_COMMON_FIELDS,
+
53  };
+
54 
+
55  // Fields shared by all normal transaction txFormats:
+
56  static const std::initializer_list<SOElement> commonFields{
+
57  PSEUDO_TXN_COMMON_FIELDS,
+
58  {sfTicketSequence, soeOPTIONAL},
+
59  };
+
60 
+
61 #pragma pop_macro("PSEUDO_TXN_COMMON_FIELDS")
62 
-
63  add(jss::TrustSet,
-
64  ttTRUST_SET,
+
63  add(jss::AccountSet,
+
64  ttACCOUNT_SET,
65  {
-
66  {sfLimitAmount, soeOPTIONAL},
-
67  {sfQualityIn, soeOPTIONAL},
-
68  {sfQualityOut, soeOPTIONAL},
-
69  {sfTicketSequence, soeOPTIONAL},
-
70  },
-
71  commonFields);
-
72 
-
73  add(jss::OfferCreate,
-
74  ttOFFER_CREATE,
-
75  {
-
76  {sfTakerPays, soeREQUIRED},
-
77  {sfTakerGets, soeREQUIRED},
-
78  {sfExpiration, soeOPTIONAL},
-
79  {sfOfferSequence, soeOPTIONAL},
-
80  {sfTicketSequence, soeOPTIONAL},
-
81  },
-
82  commonFields);
-
83 
-
84  add(jss::AMMCreate,
-
85  ttAMM_CREATE,
-
86  {
-
87  {sfAmount, soeREQUIRED},
-
88  {sfAmount2, soeREQUIRED},
-
89  {sfTradingFee, soeREQUIRED},
-
90  {sfTicketSequence, soeOPTIONAL},
-
91  },
-
92  commonFields);
-
93 
-
94  add(jss::AMMDeposit,
-
95  ttAMM_DEPOSIT,
-
96  {
-
97  {sfAsset, soeREQUIRED},
-
98  {sfAsset2, soeREQUIRED},
-
99  {sfAmount, soeOPTIONAL},
-
100  {sfAmount2, soeOPTIONAL},
-
101  {sfEPrice, soeOPTIONAL},
-
102  {sfLPTokenOut, soeOPTIONAL},
-
103  {sfTicketSequence, soeOPTIONAL},
-
104  {sfTradingFee, soeOPTIONAL},
-
105  },
-
106  commonFields);
-
107 
-
108  add(jss::AMMWithdraw,
-
109  ttAMM_WITHDRAW,
-
110  {
-
111  {sfAsset, soeREQUIRED},
-
112  {sfAsset2, soeREQUIRED},
-
113  {sfAmount, soeOPTIONAL},
-
114  {sfAmount2, soeOPTIONAL},
-
115  {sfEPrice, soeOPTIONAL},
-
116  {sfLPTokenIn, soeOPTIONAL},
-
117  {sfTicketSequence, soeOPTIONAL},
-
118  },
-
119  commonFields);
-
120 
-
121  add(jss::AMMVote,
-
122  ttAMM_VOTE,
-
123  {
-
124  {sfAsset, soeREQUIRED},
-
125  {sfAsset2, soeREQUIRED},
-
126  {sfTradingFee, soeREQUIRED},
-
127  {sfTicketSequence, soeOPTIONAL},
-
128  },
-
129  commonFields);
-
130 
-
131  add(jss::AMMBid,
-
132  ttAMM_BID,
-
133  {
-
134  {sfAsset, soeREQUIRED},
-
135  {sfAsset2, soeREQUIRED},
-
136  {sfBidMin, soeOPTIONAL},
-
137  {sfBidMax, soeOPTIONAL},
-
138  {sfAuthAccounts, soeOPTIONAL},
-
139  {sfTicketSequence, soeOPTIONAL},
-
140  },
-
141  commonFields);
-
142 
-
143  add(jss::AMMDelete,
-
144  ttAMM_DELETE,
-
145  {
-
146  {sfAsset, soeREQUIRED},
-
147  {sfAsset2, soeREQUIRED},
-
148  {sfTicketSequence, soeOPTIONAL},
+
66  {sfEmailHash, soeOPTIONAL},
+
67  {sfWalletLocator, soeOPTIONAL},
+
68  {sfWalletSize, soeOPTIONAL},
+
69  {sfMessageKey, soeOPTIONAL},
+
70  {sfDomain, soeOPTIONAL},
+
71  {sfTransferRate, soeOPTIONAL},
+
72  {sfSetFlag, soeOPTIONAL},
+
73  {sfClearFlag, soeOPTIONAL},
+
74  {sfTickSize, soeOPTIONAL},
+
75  {sfNFTokenMinter, soeOPTIONAL},
+
76  },
+
77  commonFields);
+
78 
+
79  add(jss::TrustSet,
+
80  ttTRUST_SET,
+
81  {
+
82  {sfLimitAmount, soeOPTIONAL},
+
83  {sfQualityIn, soeOPTIONAL},
+
84  {sfQualityOut, soeOPTIONAL},
+
85  },
+
86  commonFields);
+
87 
+
88  add(jss::OfferCreate,
+
89  ttOFFER_CREATE,
+
90  {
+
91  {sfTakerPays, soeREQUIRED},
+
92  {sfTakerGets, soeREQUIRED},
+
93  {sfExpiration, soeOPTIONAL},
+
94  {sfOfferSequence, soeOPTIONAL},
+
95  },
+
96  commonFields);
+
97 
+
98  add(jss::AMMCreate,
+
99  ttAMM_CREATE,
+
100  {
+
101  {sfAmount, soeREQUIRED},
+
102  {sfAmount2, soeREQUIRED},
+
103  {sfTradingFee, soeREQUIRED},
+
104  },
+
105  commonFields);
+
106 
+
107  add(jss::AMMDeposit,
+
108  ttAMM_DEPOSIT,
+
109  {
+
110  {sfAsset, soeREQUIRED},
+
111  {sfAsset2, soeREQUIRED},
+
112  {sfAmount, soeOPTIONAL},
+
113  {sfAmount2, soeOPTIONAL},
+
114  {sfEPrice, soeOPTIONAL},
+
115  {sfLPTokenOut, soeOPTIONAL},
+
116  {sfTradingFee, soeOPTIONAL},
+
117  },
+
118  commonFields);
+
119 
+
120  add(jss::AMMWithdraw,
+
121  ttAMM_WITHDRAW,
+
122  {
+
123  {sfAsset, soeREQUIRED},
+
124  {sfAsset2, soeREQUIRED},
+
125  {sfAmount, soeOPTIONAL},
+
126  {sfAmount2, soeOPTIONAL},
+
127  {sfEPrice, soeOPTIONAL},
+
128  {sfLPTokenIn, soeOPTIONAL},
+
129  },
+
130  commonFields);
+
131 
+
132  add(jss::AMMVote,
+
133  ttAMM_VOTE,
+
134  {
+
135  {sfAsset, soeREQUIRED},
+
136  {sfAsset2, soeREQUIRED},
+
137  {sfTradingFee, soeREQUIRED},
+
138  },
+
139  commonFields);
+
140 
+
141  add(jss::AMMBid,
+
142  ttAMM_BID,
+
143  {
+
144  {sfAsset, soeREQUIRED},
+
145  {sfAsset2, soeREQUIRED},
+
146  {sfBidMin, soeOPTIONAL},
+
147  {sfBidMax, soeOPTIONAL},
+
148  {sfAuthAccounts, soeOPTIONAL},
149  },
150  commonFields);
151 
-
152  add(jss::OfferCancel,
-
153  ttOFFER_CANCEL,
+
152  add(jss::AMMDelete,
+
153  ttAMM_DELETE,
154  {
-
155  {sfOfferSequence, soeREQUIRED},
-
156  {sfTicketSequence, soeOPTIONAL},
+
155  {sfAsset, soeREQUIRED},
+
156  {sfAsset2, soeREQUIRED},
157  },
158  commonFields);
159 
-
160  add(jss::SetRegularKey,
-
161  ttREGULAR_KEY_SET,
+
160  add(jss::OfferCancel,
+
161  ttOFFER_CANCEL,
162  {
-
163  {sfRegularKey, soeOPTIONAL},
-
164  {sfTicketSequence, soeOPTIONAL},
-
165  },
-
166  commonFields);
-
167 
-
168  add(jss::Payment,
-
169  ttPAYMENT,
-
170  {
-
171  {sfDestination, soeREQUIRED},
-
172  {sfAmount, soeREQUIRED},
-
173  {sfSendMax, soeOPTIONAL},
-
174  {sfPaths, soeDEFAULT},
-
175  {sfInvoiceID, soeOPTIONAL},
-
176  {sfDestinationTag, soeOPTIONAL},
-
177  {sfDeliverMin, soeOPTIONAL},
-
178  {sfTicketSequence, soeOPTIONAL},
-
179  },
-
180  commonFields);
-
181 
-
182  add(jss::EscrowCreate,
-
183  ttESCROW_CREATE,
-
184  {
-
185  {sfDestination, soeREQUIRED},
-
186  {sfAmount, soeREQUIRED},
-
187  {sfCondition, soeOPTIONAL},
-
188  {sfCancelAfter, soeOPTIONAL},
-
189  {sfFinishAfter, soeOPTIONAL},
-
190  {sfDestinationTag, soeOPTIONAL},
-
191  {sfTicketSequence, soeOPTIONAL},
-
192  },
-
193  commonFields);
-
194 
-
195  add(jss::EscrowFinish,
-
196  ttESCROW_FINISH,
-
197  {
-
198  {sfOwner, soeREQUIRED},
-
199  {sfOfferSequence, soeREQUIRED},
-
200  {sfFulfillment, soeOPTIONAL},
-
201  {sfCondition, soeOPTIONAL},
-
202  {sfTicketSequence, soeOPTIONAL},
-
203  },
-
204  commonFields);
-
205 
-
206  add(jss::EscrowCancel,
-
207  ttESCROW_CANCEL,
-
208  {
-
209  {sfOwner, soeREQUIRED},
-
210  {sfOfferSequence, soeREQUIRED},
-
211  {sfTicketSequence, soeOPTIONAL},
-
212  },
-
213  commonFields);
-
214 
-
215  add(jss::EnableAmendment,
-
216  ttAMENDMENT,
-
217  {
-
218  {sfLedgerSequence, soeREQUIRED},
-
219  {sfAmendment, soeREQUIRED},
-
220  },
-
221  commonFields);
-
222 
-
223  add(jss::SetFee,
-
224  ttFEE,
-
225  {
-
226  {sfLedgerSequence, soeOPTIONAL},
-
227  // Old version uses raw numbers
-
228  {sfBaseFee, soeOPTIONAL},
-
229  {sfReferenceFeeUnits, soeOPTIONAL},
-
230  {sfReserveBase, soeOPTIONAL},
-
231  {sfReserveIncrement, soeOPTIONAL},
-
232  // New version uses Amounts
-
233  {sfBaseFeeDrops, soeOPTIONAL},
-
234  {sfReserveBaseDrops, soeOPTIONAL},
-
235  {sfReserveIncrementDrops, soeOPTIONAL},
-
236  },
-
237  commonFields);
-
238 
-
239  add(jss::UNLModify,
-
240  ttUNL_MODIFY,
-
241  {
-
242  {sfUNLModifyDisabling, soeREQUIRED},
-
243  {sfLedgerSequence, soeREQUIRED},
-
244  {sfUNLModifyValidator, soeREQUIRED},
-
245  },
-
246  commonFields);
-
247 
-
248  add(jss::TicketCreate,
-
249  ttTICKET_CREATE,
-
250  {
-
251  {sfTicketCount, soeREQUIRED},
-
252  {sfTicketSequence, soeOPTIONAL},
-
253  },
-
254  commonFields);
-
255 
-
256  // The SignerEntries are optional because a SignerList is deleted by
-
257  // setting the SignerQuorum to zero and omitting SignerEntries.
-
258  add(jss::SignerListSet,
-
259  ttSIGNER_LIST_SET,
-
260  {
-
261  {sfSignerQuorum, soeREQUIRED},
-
262  {sfSignerEntries, soeOPTIONAL},
-
263  {sfTicketSequence, soeOPTIONAL},
+
163  {sfOfferSequence, soeREQUIRED},
+
164  },
+
165  commonFields);
+
166 
+
167  add(jss::SetRegularKey,
+
168  ttREGULAR_KEY_SET,
+
169  {
+
170  {sfRegularKey, soeOPTIONAL},
+
171  },
+
172  commonFields);
+
173 
+
174  add(jss::Payment,
+
175  ttPAYMENT,
+
176  {
+
177  {sfDestination, soeREQUIRED},
+
178  {sfAmount, soeREQUIRED},
+
179  {sfSendMax, soeOPTIONAL},
+
180  {sfPaths, soeDEFAULT},
+
181  {sfInvoiceID, soeOPTIONAL},
+
182  {sfDestinationTag, soeOPTIONAL},
+
183  {sfDeliverMin, soeOPTIONAL},
+
184  },
+
185  commonFields);
+
186 
+
187  add(jss::EscrowCreate,
+
188  ttESCROW_CREATE,
+
189  {
+
190  {sfDestination, soeREQUIRED},
+
191  {sfAmount, soeREQUIRED},
+
192  {sfCondition, soeOPTIONAL},
+
193  {sfCancelAfter, soeOPTIONAL},
+
194  {sfFinishAfter, soeOPTIONAL},
+
195  {sfDestinationTag, soeOPTIONAL},
+
196  },
+
197  commonFields);
+
198 
+
199  add(jss::EscrowFinish,
+
200  ttESCROW_FINISH,
+
201  {
+
202  {sfOwner, soeREQUIRED},
+
203  {sfOfferSequence, soeREQUIRED},
+
204  {sfFulfillment, soeOPTIONAL},
+
205  {sfCondition, soeOPTIONAL},
+
206  },
+
207  commonFields);
+
208 
+
209  add(jss::EscrowCancel,
+
210  ttESCROW_CANCEL,
+
211  {
+
212  {sfOwner, soeREQUIRED},
+
213  {sfOfferSequence, soeREQUIRED},
+
214  },
+
215  commonFields);
+
216 
+
217  add(jss::EnableAmendment,
+
218  ttAMENDMENT,
+
219  {
+
220  {sfLedgerSequence, soeREQUIRED},
+
221  {sfAmendment, soeREQUIRED},
+
222  },
+
223  pseudoCommonFields);
+
224 
+
225  add(jss::SetFee,
+
226  ttFEE,
+
227  {
+
228  {sfLedgerSequence, soeOPTIONAL},
+
229  // Old version uses raw numbers
+
230  {sfBaseFee, soeOPTIONAL},
+
231  {sfReferenceFeeUnits, soeOPTIONAL},
+
232  {sfReserveBase, soeOPTIONAL},
+
233  {sfReserveIncrement, soeOPTIONAL},
+
234  // New version uses Amounts
+
235  {sfBaseFeeDrops, soeOPTIONAL},
+
236  {sfReserveBaseDrops, soeOPTIONAL},
+
237  {sfReserveIncrementDrops, soeOPTIONAL},
+
238  },
+
239  pseudoCommonFields);
+
240 
+
241  add(jss::UNLModify,
+
242  ttUNL_MODIFY,
+
243  {
+
244  {sfUNLModifyDisabling, soeREQUIRED},
+
245  {sfLedgerSequence, soeREQUIRED},
+
246  {sfUNLModifyValidator, soeREQUIRED},
+
247  },
+
248  pseudoCommonFields);
+
249 
+
250  add(jss::TicketCreate,
+
251  ttTICKET_CREATE,
+
252  {
+
253  {sfTicketCount, soeREQUIRED},
+
254  },
+
255  commonFields);
+
256 
+
257  // The SignerEntries are optional because a SignerList is deleted by
+
258  // setting the SignerQuorum to zero and omitting SignerEntries.
+
259  add(jss::SignerListSet,
+
260  ttSIGNER_LIST_SET,
+
261  {
+
262  {sfSignerQuorum, soeREQUIRED},
+
263  {sfSignerEntries, soeOPTIONAL},
264  },
265  commonFields);
266 
@@ -344,160 +344,144 @@ $(function() {
273  {sfPublicKey, soeREQUIRED},
274  {sfCancelAfter, soeOPTIONAL},
275  {sfDestinationTag, soeOPTIONAL},
-
276  {sfTicketSequence, soeOPTIONAL},
-
277  },
-
278  commonFields);
-
279 
-
280  add(jss::PaymentChannelFund,
-
281  ttPAYCHAN_FUND,
-
282  {
-
283  {sfChannel, soeREQUIRED},
-
284  {sfAmount, soeREQUIRED},
-
285  {sfExpiration, soeOPTIONAL},
-
286  {sfTicketSequence, soeOPTIONAL},
-
287  },
-
288  commonFields);
-
289 
-
290  add(jss::PaymentChannelClaim,
-
291  ttPAYCHAN_CLAIM,
-
292  {
-
293  {sfChannel, soeREQUIRED},
-
294  {sfAmount, soeOPTIONAL},
-
295  {sfBalance, soeOPTIONAL},
-
296  {sfSignature, soeOPTIONAL},
-
297  {sfPublicKey, soeOPTIONAL},
-
298  {sfTicketSequence, soeOPTIONAL},
-
299  },
-
300  commonFields);
-
301 
-
302  add(jss::CheckCreate,
-
303  ttCHECK_CREATE,
-
304  {
-
305  {sfDestination, soeREQUIRED},
-
306  {sfSendMax, soeREQUIRED},
-
307  {sfExpiration, soeOPTIONAL},
-
308  {sfDestinationTag, soeOPTIONAL},
-
309  {sfInvoiceID, soeOPTIONAL},
-
310  {sfTicketSequence, soeOPTIONAL},
-
311  },
-
312  commonFields);
-
313 
-
314  add(jss::CheckCash,
-
315  ttCHECK_CASH,
-
316  {
-
317  {sfCheckID, soeREQUIRED},
-
318  {sfAmount, soeOPTIONAL},
-
319  {sfDeliverMin, soeOPTIONAL},
-
320  {sfTicketSequence, soeOPTIONAL},
-
321  },
-
322  commonFields);
-
323 
-
324  add(jss::CheckCancel,
-
325  ttCHECK_CANCEL,
-
326  {
-
327  {sfCheckID, soeREQUIRED},
-
328  {sfTicketSequence, soeOPTIONAL},
-
329  },
-
330  commonFields);
-
331 
-
332  add(jss::AccountDelete,
-
333  ttACCOUNT_DELETE,
-
334  {
-
335  {sfDestination, soeREQUIRED},
-
336  {sfDestinationTag, soeOPTIONAL},
-
337  {sfTicketSequence, soeOPTIONAL},
-
338  },
-
339  commonFields);
-
340 
-
341  add(jss::DepositPreauth,
-
342  ttDEPOSIT_PREAUTH,
-
343  {
-
344  {sfAuthorize, soeOPTIONAL},
-
345  {sfUnauthorize, soeOPTIONAL},
-
346  {sfTicketSequence, soeOPTIONAL},
-
347  },
-
348  commonFields);
-
349 
-
350  add(jss::NFTokenMint,
-
351  ttNFTOKEN_MINT,
-
352  {
-
353  {sfNFTokenTaxon, soeREQUIRED},
-
354  {sfTransferFee, soeOPTIONAL},
-
355  {sfIssuer, soeOPTIONAL},
-
356  {sfURI, soeOPTIONAL},
-
357  {sfTicketSequence, soeOPTIONAL},
-
358  },
-
359  commonFields);
-
360 
-
361  add(jss::NFTokenBurn,
-
362  ttNFTOKEN_BURN,
-
363  {
-
364  {sfNFTokenID, soeREQUIRED},
-
365  {sfOwner, soeOPTIONAL},
-
366  {sfTicketSequence, soeOPTIONAL},
-
367  },
-
368  commonFields);
-
369 
-
370  add(jss::NFTokenCreateOffer,
-
371  ttNFTOKEN_CREATE_OFFER,
-
372  {
-
373  {sfNFTokenID, soeREQUIRED},
-
374  {sfAmount, soeREQUIRED},
-
375  {sfDestination, soeOPTIONAL},
-
376  {sfOwner, soeOPTIONAL},
-
377  {sfExpiration, soeOPTIONAL},
-
378  {sfTicketSequence, soeOPTIONAL},
-
379  },
-
380  commonFields);
-
381 
-
382  add(jss::NFTokenCancelOffer,
-
383  ttNFTOKEN_CANCEL_OFFER,
-
384  {
-
385  {sfNFTokenOffers, soeREQUIRED},
-
386  {sfTicketSequence, soeOPTIONAL},
-
387  },
-
388  commonFields);
-
389 
-
390  add(jss::NFTokenAcceptOffer,
-
391  ttNFTOKEN_ACCEPT_OFFER,
-
392  {
-
393  {sfNFTokenBuyOffer, soeOPTIONAL},
-
394  {sfNFTokenSellOffer, soeOPTIONAL},
-
395  {sfNFTokenBrokerFee, soeOPTIONAL},
-
396  {sfTicketSequence, soeOPTIONAL},
-
397  },
-
398  commonFields);
-
399 
-
400  add(jss::Clawback,
-
401  ttCLAWBACK,
-
402  {
-
403  {sfAmount, soeREQUIRED},
-
404  {sfTicketSequence, soeOPTIONAL},
-
405  },
-
406  commonFields);
-
407 }
-
408 
-
409 TxFormats const&
-
410 TxFormats::getInstance()
-
411 {
-
412  static TxFormats const instance;
-
413  return instance;
-
414 }
-
415 
-
416 } // namespace ripple
+
276  },
+
277  commonFields);
+
278 
+
279  add(jss::PaymentChannelFund,
+
280  ttPAYCHAN_FUND,
+
281  {
+
282  {sfChannel, soeREQUIRED},
+
283  {sfAmount, soeREQUIRED},
+
284  {sfExpiration, soeOPTIONAL},
+
285  },
+
286  commonFields);
+
287 
+
288  add(jss::PaymentChannelClaim,
+
289  ttPAYCHAN_CLAIM,
+
290  {
+
291  {sfChannel, soeREQUIRED},
+
292  {sfAmount, soeOPTIONAL},
+
293  {sfBalance, soeOPTIONAL},
+
294  {sfSignature, soeOPTIONAL},
+
295  {sfPublicKey, soeOPTIONAL},
+
296  },
+
297  commonFields);
+
298 
+
299  add(jss::CheckCreate,
+
300  ttCHECK_CREATE,
+
301  {
+
302  {sfDestination, soeREQUIRED},
+
303  {sfSendMax, soeREQUIRED},
+
304  {sfExpiration, soeOPTIONAL},
+
305  {sfDestinationTag, soeOPTIONAL},
+
306  {sfInvoiceID, soeOPTIONAL},
+
307  },
+
308  commonFields);
+
309 
+
310  add(jss::CheckCash,
+
311  ttCHECK_CASH,
+
312  {
+
313  {sfCheckID, soeREQUIRED},
+
314  {sfAmount, soeOPTIONAL},
+
315  {sfDeliverMin, soeOPTIONAL},
+
316  },
+
317  commonFields);
+
318 
+
319  add(jss::CheckCancel,
+
320  ttCHECK_CANCEL,
+
321  {
+
322  {sfCheckID, soeREQUIRED},
+
323  },
+
324  commonFields);
+
325 
+
326  add(jss::AccountDelete,
+
327  ttACCOUNT_DELETE,
+
328  {
+
329  {sfDestination, soeREQUIRED},
+
330  {sfDestinationTag, soeOPTIONAL},
+
331  },
+
332  commonFields);
+
333 
+
334  add(jss::DepositPreauth,
+
335  ttDEPOSIT_PREAUTH,
+
336  {
+
337  {sfAuthorize, soeOPTIONAL},
+
338  {sfUnauthorize, soeOPTIONAL},
+
339  },
+
340  commonFields);
+
341 
+
342  add(jss::NFTokenMint,
+
343  ttNFTOKEN_MINT,
+
344  {
+
345  {sfNFTokenTaxon, soeREQUIRED},
+
346  {sfTransferFee, soeOPTIONAL},
+
347  {sfIssuer, soeOPTIONAL},
+
348  {sfURI, soeOPTIONAL},
+
349  },
+
350  commonFields);
+
351 
+
352  add(jss::NFTokenBurn,
+
353  ttNFTOKEN_BURN,
+
354  {
+
355  {sfNFTokenID, soeREQUIRED},
+
356  {sfOwner, soeOPTIONAL},
+
357  },
+
358  commonFields);
+
359 
+
360  add(jss::NFTokenCreateOffer,
+
361  ttNFTOKEN_CREATE_OFFER,
+
362  {
+
363  {sfNFTokenID, soeREQUIRED},
+
364  {sfAmount, soeREQUIRED},
+
365  {sfDestination, soeOPTIONAL},
+
366  {sfOwner, soeOPTIONAL},
+
367  {sfExpiration, soeOPTIONAL},
+
368  },
+
369  commonFields);
+
370 
+
371  add(jss::NFTokenCancelOffer,
+
372  ttNFTOKEN_CANCEL_OFFER,
+
373  {
+
374  {sfNFTokenOffers, soeREQUIRED},
+
375  },
+
376  commonFields);
+
377 
+
378  add(jss::NFTokenAcceptOffer,
+
379  ttNFTOKEN_ACCEPT_OFFER,
+
380  {
+
381  {sfNFTokenBuyOffer, soeOPTIONAL},
+
382  {sfNFTokenSellOffer, soeOPTIONAL},
+
383  {sfNFTokenBrokerFee, soeOPTIONAL},
+
384  },
+
385  commonFields);
+
386 
+
387  add(jss::Clawback,
+
388  ttCLAWBACK,
+
389  {
+
390  {sfAmount, soeREQUIRED},
+
391  },
+
392  commonFields);
+
393 }
+
394 
+
395 TxFormats const&
+
396 TxFormats::getInstance()
+
397 {
+
398  static TxFormats const instance;
+
399  return instance;
+
400 }
+
401 
+
402 } // namespace ripple
ripple::ttNFTOKEN_CREATE_OFFER
@ ttNFTOKEN_CREATE_OFFER
This transaction creates a new offer to buy or sell an NFT.
Definition: TxFormats.h:134
ripple::sfOfferSequence
const SF_UINT32 sfOfferSequence
ripple::ttACCOUNT_DELETE
@ ttACCOUNT_DELETE
This transaction type deletes an existing account.
Definition: TxFormats.h:122
ripple::sfPaths
const SField sfPaths
ripple::sfUNLModifyValidator
const SF_VL sfUNLModifyValidator
-
ripple::sfSourceTag
const SF_UINT32 sfSourceTag
ripple::sfBaseFeeDrops
const SF_AMOUNT sfBaseFeeDrops
ripple::sfReserveBase
const SF_UINT32 sfReserveBase
ripple::ttAMM_DELETE
@ ttAMM_DELETE
This transaction type deletes AMM in the empty state.
Definition: TxFormats.h:161
ripple::sfAsset
const SF_ISSUE sfAsset
ripple::sfSendMax
const SF_AMOUNT sfSendMax
-
ripple::sfSigners
const SField sfSigners
ripple::sfLedgerSequence
const SF_UINT32 sfLedgerSequence
ripple::sfNFTokenOffers
const SF_VECTOR256 sfNFTokenOffers
ripple::sfDestination
const SF_ACCOUNT sfDestination
@@ -511,10 +495,8 @@ $(function() {
ripple::ttSIGNER_LIST_SET
@ ttSIGNER_LIST_SET
This transaction type modifies the signer list associated with an account.
Definition: TxFormats.h:95
ripple::sfQualityOut
const SF_UINT32 sfQualityOut
ripple::sfOwner
const SF_ACCOUNT sfOwner
-
ripple::sfSequence
const SF_UINT32 sfSequence
ripple::sfRegularKey
const SF_ACCOUNT sfRegularKey
ripple::ttESCROW_CANCEL
@ ttESCROW_CANCEL
This transaction type cancels an existing escrow.
Definition: TxFormats.h:71
-
ripple::sfSigningPubKey
const SF_VL sfSigningPubKey
ripple::sfEPrice
const SF_AMOUNT sfEPrice
ripple::ttFEE
@ ttFEE
This system-generated transaction type is used to update the network's fee settings.
Definition: TxFormats.h:173
ripple::ttAMM_DEPOSIT
@ ttAMM_DEPOSIT
This transaction type deposits into an AMM instance.
Definition: TxFormats.h:149
@@ -534,17 +516,15 @@ $(function() {
ripple::sfSignerQuorum
const SF_UINT32 sfSignerQuorum
ripple::ttPAYMENT
@ ttPAYMENT
This transaction type executes a payment.
Definition: TxFormats.h:59
ripple::sfTakerPays
const SF_AMOUNT sfTakerPays
-
ripple::sfTransactionType
const SF_UINT16 sfTransactionType
ripple::sfDeliverMin
const SF_AMOUNT sfDeliverMin
ripple::sfLimitAmount
const SF_AMOUNT sfLimitAmount
ripple::sfAsset2
const SF_ISSUE sfAsset2
ripple::ttUNL_MODIFY
@ ttUNL_MODIFY
This system-generated transaction type is used to update the network's negative UNL.
Definition: TxFormats.h:179
ripple::sfSettleDelay
const SF_UINT32 sfSettleDelay
ripple::sfUnauthorize
const SF_ACCOUNT sfUnauthorize
-
ripple::sfMemos
const SField sfMemos
ripple::sfBidMax
const SF_AMOUNT sfBidMax
ripple::ttCHECK_CREATE
@ ttCHECK_CREATE
This transaction type creates a new check.
Definition: TxFormats.h:107
-
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:410
+
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:396
ripple::sfNFTokenMinter
const SF_ACCOUNT sfNFTokenMinter
ripple::ttAMM_CREATE
@ ttAMM_CREATE
This transaction type creates an AMM instance.
Definition: TxFormats.h:146
ripple::ttTRUST_SET
@ ttTRUST_SET
This transaction type modifies a trustline between two accounts.
Definition: TxFormats.h:119
@@ -555,13 +535,11 @@ $(function() {
ripple::ttNFTOKEN_MINT
@ ttNFTOKEN_MINT
This transaction mints a new NFT.
Definition: TxFormats.h:128
ripple::ttESCROW_CREATE
@ ttESCROW_CREATE
This transaction type creates an escrow object.
Definition: TxFormats.h:62
ripple::sfTicketCount
const SF_UINT32 sfTicketCount
-
ripple::sfAccountTxnID
const SF_UINT256 sfAccountTxnID
ripple::ttAMM_WITHDRAW
@ ttAMM_WITHDRAW
This transaction type withdraws from an AMM instance.
Definition: TxFormats.h:152
ripple::ttESCROW_FINISH
@ ttESCROW_FINISH
This transaction type completes an existing escrow.
Definition: TxFormats.h:65
ripple::sfTakerGets
const SF_AMOUNT sfTakerGets
ripple::sfTransferRate
const SF_UINT32 sfTransferRate
ripple::sfTickSize
const SF_UINT8 sfTickSize
-
ripple::sfPreviousTxnID
const SF_UINT256 sfPreviousTxnID
ripple::sfAuthorize
const SF_ACCOUNT sfAuthorize
ripple::sfReserveIncrementDrops
const SF_AMOUNT sfReserveIncrementDrops
ripple::sfClearFlag
const SF_UINT32 sfClearFlag
@@ -574,10 +552,8 @@ $(function() {
ripple::sfEmailHash
const SF_UINT128 sfEmailHash
ripple::ttACCOUNT_SET
@ ttACCOUNT_SET
This transaction type adjusts various account settings.
Definition: TxFormats.h:68
ripple::sfSignerEntries
const SField sfSignerEntries
-
ripple::sfOperationLimit
const SF_UINT32 sfOperationLimit
ripple::sfBaseFee
const SF_UINT64 sfBaseFee
ripple::sfNFTokenBuyOffer
const SF_UINT256 sfNFTokenBuyOffer
-
ripple::sfTxnSignature
const SF_VL sfTxnSignature
ripple::sfURI
const SF_VL sfURI
ripple
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: RCLCensorshipDetector.h:29
ripple::sfWalletLocator
const SF_UINT256 sfWalletLocator
@@ -585,7 +561,6 @@ $(function() {
ripple::sfIssuer
const SF_ACCOUNT sfIssuer
ripple::ttDEPOSIT_PREAUTH
@ ttDEPOSIT_PREAUTH
This transaction type grants or revokes authorization to transfer funds.
Definition: TxFormats.h:116
ripple::sfInvoiceID
const SF_UINT256 sfInvoiceID
-
ripple::sfFlags
const SF_UINT32 sfFlags
ripple::sfDestinationTag
const SF_UINT32 sfDestinationTag
ripple::ttCHECK_CASH
@ ttCHECK_CASH
This transaction type cashes an existing check.
Definition: TxFormats.h:110
ripple::sfSignature
const SF_VL sfSignature
@@ -600,12 +575,8 @@ $(function() {
ripple::sfFinishAfter
const SF_UINT32 sfFinishAfter
ripple::sfChannel
const SF_UINT256 sfChannel
ripple::sfNFTokenTaxon
const SF_UINT32 sfNFTokenTaxon
-
ripple::sfFee
const SF_AMOUNT sfFee
-
ripple::sfAccount
const SF_ACCOUNT sfAccount
ripple::sfLPTokenIn
const SF_AMOUNT sfLPTokenIn
-
ripple::sfNetworkID
const SF_UINT32 sfNetworkID
ripple::sfDomain
const SF_VL sfDomain
-
ripple::sfLastLedgerSequence
const SF_UINT32 sfLastLedgerSequence
ripple::sfAmendment
const SF_UINT256 sfAmendment
ripple::sfFulfillment
const SF_VL sfFulfillment
ripple::sfPublicKey
const SF_VL sfPublicKey
diff --git a/TxFormats_8h_source.html b/TxFormats_8h_source.html index ac6e40a204..0f8ba25c88 100644 --- a/TxFormats_8h_source.html +++ b/TxFormats_8h_source.html @@ -211,7 +211,7 @@ $(function() {
ripple::ttCONTRACT
@ ttCONTRACT
This transaction type is deprecated; it is retained for historical purposes.
Definition: TxFormats.h:86
ripple::ttUNL_MODIFY
@ ttUNL_MODIFY
This system-generated transaction type is used to update the network's negative UNL.
Definition: TxFormats.h:179
ripple::ttCHECK_CREATE
@ ttCHECK_CREATE
This transaction type creates a new check.
Definition: TxFormats.h:107
-
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:410
+
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:396
ripple::KnownFormats
Manages a list of known formats.
Definition: KnownFormats.h:40
ripple::ttAMM_CREATE
@ ttAMM_CREATE
This transaction type creates an AMM instance.
Definition: TxFormats.h:146
ripple::ttTRUST_SET
@ ttTRUST_SET
This transaction type modifies a trustline between two accounts.
Definition: TxFormats.h:119
diff --git a/classripple_1_1TxFormats.html b/classripple_1_1TxFormats.html index 90367a4284..d9f205f97c 100644 --- a/classripple_1_1TxFormats.html +++ b/classripple_1_1TxFormats.html @@ -209,7 +209,7 @@ Private Attributes
-

Definition at line 410 of file TxFormats.cpp.

+

Definition at line 396 of file TxFormats.cpp.

diff --git a/namespacemembers_s.html b/namespacemembers_s.html index a93917a6b1..8d0d69e920 100644 --- a/namespacemembers_s.html +++ b/namespacemembers_s.html @@ -1269,12 +1269,12 @@ $(function() {
  • STI_VL : ripple
  • -
  • stopwatch() -: ripple -
  • Stopwatch : ripple
  • +
  • stopwatch() +: ripple +
  • stpath() : ripple::test::jtx
  • diff --git a/namespacemembers_t.html b/namespacemembers_t.html index 79f798b9a5..36c18b45da 100644 --- a/namespacemembers_t.html +++ b/namespacemembers_t.html @@ -947,12 +947,12 @@ $(function() {
  • trustDelete() : ripple
  • -
  • TrustFlag -: ripple::test -
  • trustFlag() : ripple::test
  • +
  • TrustFlag +: ripple::test +
  • ttACCOUNT_DELETE : ripple
  • diff --git a/search/all_10.js b/search/all_10.js index a33ca4d0a4..2f20f85366 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -521,7 +521,7 @@ var searchData= ['propagatenosquelch_7769',['propagateNoSquelch',['../classripple_1_1test_1_1reduce__relay__test.html#a3a74c7472a14e78e6e23b9e83560344e',1,'ripple::test::reduce_relay_test']]], ['propertystream_7770',['PropertyStream',['../classbeast_1_1PropertyStream.html',1,'beast::PropertyStream'],['../classbeast_1_1PropertyStream.html#a5a30f51c3aecb5b1fe993e773a930c5c',1,'beast::PropertyStream::PropertyStream()']]], ['propertystream_5ftest_7771',['PropertyStream_test',['../classbeast_1_1PropertyStream__test.html',1,'beast']]], - ['proposal_7772',['proposal',['../classripple_1_1TrafficCount.html#adbaee77c7a063c9aac783e54594aeda7ae7dce5bae6aaf31f79826a9eeb0ef3f2',1,'ripple::TrafficCount::proposal()'],['../classripple_1_1RCLCxPeerPos.html#abaaee52d3710a96e8c78aa725646b46e',1,'ripple::RCLCxPeerPos::proposal()'],['../classripple_1_1test_1_1csf_1_1Peer_1_1Position.html#a1de04b0e3fd869af5632c1d6f0405884',1,'ripple::test::csf::Peer::Position::proposal()'],['../classripple_1_1RCLCxPeerPos.html#afef6574cc04e0877e8f23f76cc688390',1,'ripple::RCLCxPeerPos::Proposal()'],['../namespaceripple.html#ad5143ceada01141772ae4aab984f94bdab314439bc1697845de3749d51dca7c15',1,'ripple::proposal()'],['../namespaceripple_1_1test_1_1csf.html#aedbbde78ddc2fe5ca55bc5d005e1b3c1',1,'ripple::test::csf::Proposal()']]], + ['proposal_7772',['proposal',['../classripple_1_1TrafficCount.html#adbaee77c7a063c9aac783e54594aeda7ae7dce5bae6aaf31f79826a9eeb0ef3f2',1,'ripple::TrafficCount::proposal()'],['../classripple_1_1RCLCxPeerPos.html#abaaee52d3710a96e8c78aa725646b46e',1,'ripple::RCLCxPeerPos::proposal()'],['../classripple_1_1test_1_1csf_1_1Peer_1_1Position.html#a1de04b0e3fd869af5632c1d6f0405884',1,'ripple::test::csf::Peer::Position::proposal()'],['../classripple_1_1RCLCxPeerPos.html#afef6574cc04e0877e8f23f76cc688390',1,'ripple::RCLCxPeerPos::Proposal()'],['../namespaceripple_1_1test_1_1csf.html#aedbbde78ddc2fe5ca55bc5d005e1b3c1',1,'ripple::test::csf::Proposal()'],['../namespaceripple.html#ad5143ceada01141772ae4aab984f94bdab314439bc1697845de3749d51dca7c15',1,'ripple::proposal()']]], ['proposal_5f_7773',['proposal_',['../classripple_1_1RCLCxPeerPos.html#a4627b53b1aabff09d542d7d05cc3e2d1',1,'ripple::RCLCxPeerPos::proposal_()'],['../classripple_1_1test_1_1csf_1_1Peer_1_1Position.html#adb45363af3245fd6cee2b62be1eaee52',1,'ripple::test::csf::Peer::Position::proposal_()']]], ['proposal_5ft_7774',['Proposal_t',['../classripple_1_1Consensus.html#a31c72c3e674fa81eaf2491557e51786a',1,'ripple::Consensus::Proposal_t()'],['../structripple_1_1ConsensusResult.html#a6fccc8169f8bbbe6b77fa744df93f431',1,'ripple::ConsensusResult::Proposal_t()']]], ['proposaluniqueid_7775',['proposalUniqueId',['../namespaceripple.html#a0f5de38ef7c5157e23527a0e6a720a22',1,'ripple']]], diff --git a/search/all_13.js b/search/all_13.js index f5021f46b0..c7ef0a2a97 100644 --- a/search/all_13.js +++ b/search/all_13.js @@ -1168,7 +1168,7 @@ var searchData= ['statsdhookimpl_9762',['StatsDHookImpl',['../classbeast_1_1insight_1_1detail_1_1StatsDHookImpl.html',1,'beast::insight::detail::StatsDHookImpl'],['../classbeast_1_1insight_1_1detail_1_1StatsDHookImpl.html#ae3515765bf6e0e0adfe4298d8ab188d1',1,'beast::insight::detail::StatsDHookImpl::StatsDHookImpl()']]], ['statsdmeterimpl_9763',['StatsDMeterImpl',['../classbeast_1_1insight_1_1detail_1_1StatsDMeterImpl.html',1,'beast::insight::detail::StatsDMeterImpl'],['../classbeast_1_1insight_1_1detail_1_1StatsDMeterImpl.html#a830f863f37000427f9cf1de89e020407',1,'beast::insight::detail::StatsDMeterImpl::StatsDMeterImpl()']]], ['statsdmetricbase_9764',['StatsDMetricBase',['../classbeast_1_1insight_1_1detail_1_1StatsDMetricBase.html',1,'beast::insight::detail::StatsDMetricBase'],['../classbeast_1_1insight_1_1detail_1_1StatsDMetricBase.html#a640bafcfd902658615a78e4985c25d3f',1,'beast::insight::detail::StatsDMetricBase::StatsDMetricBase()=default'],['../classbeast_1_1insight_1_1detail_1_1StatsDMetricBase.html#a6fcff0a70c28edf105d73221734bd57f',1,'beast::insight::detail::StatsDMetricBase::StatsDMetricBase(StatsDMetricBase const &)=delete']]], - ['status_9765',['Status',['../structripple_1_1RPC_1_1Status.html',1,'ripple::RPC::Status'],['../structripple_1_1ValidatorSite_1_1Site_1_1Status.html',1,'ripple::ValidatorSite::Site::Status'],['../structripple_1_1RPC_1_1Status.html#afb00e35351668e0e0bbf54fe110cd54b',1,'ripple::RPC::Status::Status()=default'],['../structripple_1_1RPC_1_1Status.html#aa8f4294ef0ba0d50116d4952c4907627',1,'ripple::RPC::Status::Status(T code, Strings d={})'],['../structripple_1_1RPC_1_1Status.html#a50b94a7854c42f0a855bbf49579c2500',1,'ripple::RPC::Status::Status(TER ter, Strings d={})'],['../structripple_1_1RPC_1_1Status.html#a71439dd5fa30ec0d4e792265942142d6',1,'ripple::RPC::Status::Status(error_code_i e, Strings d={})'],['../structripple_1_1RPC_1_1Status.html#a308692506cdd20e83b14592144dc663b',1,'ripple::RPC::Status::Status(error_code_i e, std::string const &s)'],['../structripple_1_1ValidatorList_1_1PublisherListCollection.html#addb19dda1752c37a699821464e875931',1,'ripple::ValidatorList::PublisherListCollection::status()'],['../structripple_1_1ValidatorList_1_1PublisherListStats.html#ab22f32e8b38152895ef09736fea12d8c',1,'ripple::ValidatorList::PublisherListStats::status()'],['../structripple_1_1test_1_1GRPCTestClientBase.html#aa10315a3d1766936e53f33210ac435ac',1,'ripple::test::GRPCTestClientBase::status()'],['http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/status.html',1,'std::experimental::filesystem::directory_entry::status()'],['http://en.cppreference.com/w/cpp/filesystem/directory_entry/status.html',1,'std::filesystem::directory_entry::status()'],['http://en.cppreference.com/w/cpp/experimental/fs/status.html',1,'std::experimental::filesystem::status()'],['http://en.cppreference.com/w/cpp/filesystem/status.html',1,'std::filesystem::status()'],['../namespaceripple_1_1NodeStore.html#af127c2e4fc73b5d35647147ef45b350c',1,'ripple::NodeStore::Status()']]], + ['status_9765',['Status',['../structripple_1_1RPC_1_1Status.html',1,'ripple::RPC::Status'],['../structripple_1_1ValidatorSite_1_1Site_1_1Status.html',1,'ripple::ValidatorSite::Site::Status'],['../structripple_1_1RPC_1_1Status.html#afb00e35351668e0e0bbf54fe110cd54b',1,'ripple::RPC::Status::Status()=default'],['../structripple_1_1RPC_1_1Status.html#aa8f4294ef0ba0d50116d4952c4907627',1,'ripple::RPC::Status::Status(T code, Strings d={})'],['../structripple_1_1RPC_1_1Status.html#a50b94a7854c42f0a855bbf49579c2500',1,'ripple::RPC::Status::Status(TER ter, Strings d={})'],['../structripple_1_1RPC_1_1Status.html#a71439dd5fa30ec0d4e792265942142d6',1,'ripple::RPC::Status::Status(error_code_i e, Strings d={})'],['../structripple_1_1RPC_1_1Status.html#a308692506cdd20e83b14592144dc663b',1,'ripple::RPC::Status::Status(error_code_i e, std::string const &s)'],['../structripple_1_1ValidatorList_1_1PublisherListCollection.html#addb19dda1752c37a699821464e875931',1,'ripple::ValidatorList::PublisherListCollection::status()'],['../structripple_1_1ValidatorList_1_1PublisherListStats.html#ab22f32e8b38152895ef09736fea12d8c',1,'ripple::ValidatorList::PublisherListStats::status()'],['../structripple_1_1test_1_1GRPCTestClientBase.html#aa10315a3d1766936e53f33210ac435ac',1,'ripple::test::GRPCTestClientBase::status()'],['http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/status.html',1,'std::experimental::filesystem::directory_entry::status()'],['http://en.cppreference.com/w/cpp/filesystem/directory_entry/status.html',1,'std::filesystem::directory_entry::status()'],['../namespaceripple_1_1NodeStore.html#af127c2e4fc73b5d35647147ef45b350c',1,'ripple::NodeStore::Status()'],['http://en.cppreference.com/w/cpp/experimental/fs/status.html',1,'std::experimental::filesystem::status()'],['http://en.cppreference.com/w/cpp/filesystem/status.html',1,'std::filesystem::status()']]], ['status_5f_9766',['status_',['../classripple_1_1AsyncCallData.html#acc88eeb725ce1c0b90aa51301017498b',1,'ripple::AsyncCallData']]], ['status_5fknown_9767',['status_known',['http://en.cppreference.com/w/cpp/experimental/fs/status_known.html',1,'std::experimental::filesystem::status_known()'],['http://en.cppreference.com/w/cpp/filesystem/status_known.html',1,'std::filesystem::status_known()']]], ['statusrequestresponse_9768',['statusRequestResponse',['../namespaceripple.html#ac597446213f304f13375429394c69909',1,'ripple']]], @@ -1246,7 +1246,7 @@ var searchData= ['stoppingcondition_5f_9840',['stoppingCondition_',['../classripple_1_1ApplicationImp.html#aead0bcc47804041f6727f3a34e094889',1,'ripple::ApplicationImp']]], ['stoppingmutex_5f_9841',['stoppingMutex_',['../classripple_1_1ApplicationImp.html#a6c73944d28b7a2d166c6f7358a8705cb',1,'ripple::ApplicationImp']]], ['stopsignaled_9842',['stopSignaled',['../structripple_1_1PerfLog__test_1_1Fixture.html#a70ce6eccc7d946525b18e5e87b901038',1,'ripple::PerfLog_test::Fixture']]], - ['stopwatch_9843',['Stopwatch',['../namespaceripple.html#abfbcd3fa60b2ddb83f5b2991900fe153',1,'ripple::Stopwatch()'],['../namespaceripple.html#ac70521ab6e1277870a9e400e7a08e937',1,'ripple::stopwatch()']]], + ['stopwatch_9843',['stopwatch',['../namespaceripple.html#ac70521ab6e1277870a9e400e7a08e937',1,'ripple::stopwatch()'],['../namespaceripple.html#abfbcd3fa60b2ddb83f5b2991900fe153',1,'ripple::Stopwatch()']]], ['stopwatch_5f_9844',['stopwatch_',['../classripple_1_1test_1_1jtx_1_1Env.html#ae5faa973b34c76e125045048ff896274',1,'ripple::test::jtx::Env']]], ['store_9845',['Store',['../classripple_1_1PeerFinder_1_1Store.html',1,'ripple::PeerFinder::Store'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_bool::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_char16_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_char32_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int16_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int32_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int64_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int8_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int_fast16_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int_fast32_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int_fast64_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int_fast8_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int_least16_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int_least32_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int_least64_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_int_least8_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_intmax_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_intptr_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_llong::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_long::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_ptrdiff_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic_ref/store.html',1,'std::atomic_ref::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_schar::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_short::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_size_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uchar::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint16_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint32_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint64_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint8_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint_fast16_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint_fast32_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint_fast64_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint_fast8_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint_least16_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint_least32_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint_least64_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uint_least8_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uintmax_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_uintptr_t::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_ullong::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_ulong::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_ushort::store()'],['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',1,'std::atomic_wchar_t::store()'],['../classripple_1_1NodeStore_1_1MemoryBackend.html#a40130939ef641571abf616a970d63957',1,'ripple::NodeStore::MemoryBackend::store()'],['../classripple_1_1NodeStore_1_1NuDBBackend.html#a00c5d2a5073f3318fc0e52f255a1c212',1,'ripple::NodeStore::NuDBBackend::store()'],['../classripple_1_1NodeStore_1_1NullBackend.html#ad3d41ab83222e39efd5aaebf39160df8',1,'ripple::NodeStore::NullBackend::store()'],['../classripple_1_1NodeStore_1_1Backend.html#a8862f8d96713c985c3169e57cbb260c2',1,'ripple::NodeStore::Backend::store()'],['../classripple_1_1NodeStore_1_1Database.html#a7da2336581ee3348aad97c0d885658d0',1,'ripple::NodeStore::Database::store()'],['../classripple_1_1NodeStore_1_1BatchWriter.html#a42b3434b00f66603124653fbf691ad26',1,'ripple::NodeStore::BatchWriter::store()'],['../classripple_1_1NodeStore_1_1DatabaseNodeImp.html#a5f23a54188aa2329d979c937d932dbaf',1,'ripple::NodeStore::DatabaseNodeImp::store()'],['../classripple_1_1NodeStore_1_1DatabaseRotatingImp.html#a7992d0dd009c5b855c331c73872c946d',1,'ripple::NodeStore::DatabaseRotatingImp::store()'],['../classripple_1_1NodeStore_1_1DatabaseShardImp.html#aa2a32f28cb0b4e0a5097205410c346eb',1,'ripple::NodeStore::DatabaseShardImp::store()'],['../classripple_1_1NodeStore_1_1DeterministicShard.html#a423e64a4166430c7ece27cc4c5b9130d',1,'ripple::NodeStore::DeterministicShard::store()']]], ['storebatch_9846',['storeBatch',['../classripple_1_1NodeStore_1_1MemoryBackend.html#ab677b7560cd27c159ad78e1412513d5f',1,'ripple::NodeStore::MemoryBackend::storeBatch()'],['../classripple_1_1NodeStore_1_1NuDBBackend.html#a4e9abc2a44a3501131709dcd6d5c509a',1,'ripple::NodeStore::NuDBBackend::storeBatch()'],['../classripple_1_1NodeStore_1_1NullBackend.html#ac3d735a9706df0a50c08a2a737ebeb3d',1,'ripple::NodeStore::NullBackend::storeBatch()'],['../classripple_1_1NodeStore_1_1Backend.html#acb1f22b4101841e695477646c95376a7',1,'ripple::NodeStore::Backend::storeBatch()'],['../classripple_1_1NodeStore_1_1TestBase.html#a5bd5d36de98ec8e56c5c3da9148ae72f',1,'ripple::NodeStore::TestBase::storeBatch(Backend &backend, Batch const &batch)'],['../classripple_1_1NodeStore_1_1TestBase.html#a50f8fd79e970626074538cf54ca8432f',1,'ripple::NodeStore::TestBase::storeBatch(Database &db, Batch const &batch)']]], diff --git a/search/all_14.js b/search/all_14.js index ced30213d5..32c15be056 100644 --- a/search/all_14.js +++ b/search/all_14.js @@ -1555,7 +1555,7 @@ var searchData= ['trustedsigningkeys_5f_11633',['trustedSigningKeys_',['../classripple_1_1ValidatorList.html#ae06a469121f9f99ed9f3049e46d0206c',1,'ripple::ValidatorList']]], ['trustedvalidations_11634',['trustedValidations',['../classripple_1_1AmendmentSet.html#a6d6b63ea4b09a0b012667c79aff07528',1,'ripple::AmendmentSet']]], ['trustedvalidations_5f_11635',['trustedValidations_',['../classripple_1_1AmendmentSet.html#a08f7a2888e1f8767713d045a114975c9',1,'ripple::AmendmentSet']]], - ['trustflag_11636',['TrustFlag',['../namespaceripple_1_1test.html#acf39cc44acdd6b5089f2076897fa3911',1,'ripple::test::TrustFlag()'],['../namespaceripple_1_1test.html#a6879dc19e056b84550387698c4c38ec4',1,'ripple::test::trustFlag(TrustFlag f, bool useHigh)']]], + ['trustflag_11636',['trustFlag',['../namespaceripple_1_1test.html#a6879dc19e056b84550387698c4c38ec4',1,'ripple::test::trustFlag(TrustFlag f, bool useHigh)'],['../namespaceripple_1_1test.html#acf39cc44acdd6b5089f2076897fa3911',1,'ripple::test::TrustFlag()']]], ['trustgraph_11637',['TrustGraph',['../classripple_1_1test_1_1csf_1_1TrustGraph.html',1,'ripple::test::csf::TrustGraph< Peer >'],['../structripple_1_1test_1_1csf_1_1Peer.html#a570755672f7b6ec1c2bb96570882c166',1,'ripple::test::csf::Peer::trustGraph()'],['../classripple_1_1test_1_1csf_1_1Sim.html#a8bc47ca290010d8a2637da1cd274a605',1,'ripple::test::csf::Sim::trustGraph()'],['../classripple_1_1test_1_1csf_1_1TrustGraph.html#ad71fd7d9762e7c9b25ef2f27514afd9f',1,'ripple::test::csf::TrustGraph::TrustGraph()']]], ['trustgraph_3c_20ripple_3a_3atest_3a_3acsf_3a_3apeer_20_2a_20_3e_11638',['TrustGraph< ripple::test::csf::Peer * >',['../classripple_1_1test_1_1csf_1_1TrustGraph.html',1,'ripple::test::csf']]], ['trustlinebase_11639',['TrustLineBase',['../classripple_1_1TrustLineBase.html',1,'ripple::TrustLineBase'],['../classripple_1_1TrustLineBase.html#a710bb727f7f0b4d0872fcca8eaed8768',1,'ripple::TrustLineBase::TrustLineBase(std::shared_ptr< SLE const > const &sle, AccountID const &viewAccount)'],['../classripple_1_1TrustLineBase.html#ae0423b9670b43791ebddc47fc329256f',1,'ripple::TrustLineBase::TrustLineBase(TrustLineBase const &)=default'],['../classripple_1_1TrustLineBase.html#a74bdbbfaa6b36d1c4444faaa507012e9',1,'ripple::TrustLineBase::TrustLineBase(TrustLineBase &&)=default']]], diff --git a/search/all_15.js b/search/all_15.js index 0f3e3a254a..5ff679e43c 100644 --- a/search/all_15.js +++ b/search/all_15.js @@ -54,7 +54,7 @@ var searchData= ['underlying_5ftype_11876',['underlying_type',['http://en.cppreference.com/w/cpp/types/underlying_type.html',1,'std']]], ['underlying_5ftype_5ft_11877',['underlying_type_t',['http://en.cppreference.com/w/cpp/types/underlying_type.html',1,'std']]], ['undodelay_11878',['UndoDelay',['../structripple_1_1test_1_1Consensus__test_1_1UndoDelay.html',1,'ripple::test::Consensus_test::UndoDelay'],['../structripple_1_1test_1_1Consensus__test_1_1UndoDelay.html#ad77d5ecdff941435a78cd8d970434363',1,'ripple::test::Consensus_test::UndoDelay::UndoDelay()']]], - ['unexpected_11879',['Unexpected',['../classripple_1_1Unexpected.html',1,'ripple::Unexpected< E >'],['../classripple_1_1Unexpected.html#ae84f51e4038d4ba8c436d2aa90a33ae8',1,'ripple::Unexpected::Unexpected()=delete'],['../classripple_1_1Unexpected.html#a8139a951450ea521bb2321a4f2417dce',1,'ripple::Unexpected::Unexpected(E const &e)'],['../classripple_1_1Unexpected.html#af2f4eee2862f4eab830c32717c524527',1,'ripple::Unexpected::Unexpected(E &&e)'],['../namespaceripple.html#ad6887fe0534dd3b0df2da54ff8994e2f',1,'ripple::Unexpected()'],['http://en.cppreference.com/w/cpp/error/unexpected.html',1,'std::unexpected()']]], + ['unexpected_11879',['Unexpected',['../classripple_1_1Unexpected.html',1,'ripple::Unexpected< E >'],['../classripple_1_1Unexpected.html#ae84f51e4038d4ba8c436d2aa90a33ae8',1,'ripple::Unexpected::Unexpected()=delete'],['../classripple_1_1Unexpected.html#a8139a951450ea521bb2321a4f2417dce',1,'ripple::Unexpected::Unexpected(E const &e)'],['../classripple_1_1Unexpected.html#af2f4eee2862f4eab830c32717c524527',1,'ripple::Unexpected::Unexpected(E &&e)'],['http://en.cppreference.com/w/cpp/error/unexpected.html',1,'std::unexpected()'],['../namespaceripple.html#ad6887fe0534dd3b0df2da54ff8994e2f',1,'ripple::Unexpected()']]], ['unexpected_5fhandler_11880',['unexpected_handler',['http://en.cppreference.com/w/cpp/error/unexpected_handler.html',1,'std']]], ['unexpected_5ftag_11881',['unexpected_tag',['../namespaceripple_1_1cryptoconditions.html#ae0bee5541ce10d52809660ad2d100a23a680460a7b6e0775b40c1af6d93f0af0a',1,'ripple::cryptoconditions']]], ['unfunded_11882',['unfunded',['../classripple_1_1BasicTaker.html#af51ec8e0b4321092a847364f23ef2beb',1,'ripple::BasicTaker']]], diff --git a/search/all_6.js b/search/all_6.js index 41647cbe2b..e9ffa6acac 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -444,7 +444,7 @@ var searchData= ['fstream_3199',['fstream',['http://en.cppreference.com/w/cpp/io/basic_fstream.html',1,'std::fstream'],['http://en.cppreference.com/w/cpp/header/fstream.html',1,'(Global Namespace)'],['http://en.cppreference.com/w/cpp/io/basic_fstream/basic_fstream.html',1,'std::fstream::fstream()']]], ['ftell_3200',['ftell',['http://en.cppreference.com/w/cpp/io/c/ftell.html',1,'std']]], ['fulfillment_3201',['fulfillment',['../structripple_1_1test_1_1jtx_1_1fulfillment.html',1,'ripple::test::jtx::fulfillment'],['../structripple_1_1cryptoconditions_1_1Fulfillment.html',1,'ripple::cryptoconditions::Fulfillment'],['../structripple_1_1test_1_1jtx_1_1fulfillment.html#a20e1fa2e298be0531c75e8a7728dc746',1,'ripple::test::jtx::fulfillment::fulfillment(Slice condition)'],['../structripple_1_1test_1_1jtx_1_1fulfillment.html#a4519dc76259e4be97588c89d6fa9d0fe',1,'ripple::test::jtx::fulfillment::fulfillment(std::array< std::uint8_t, N > f)']]], - ['full_3202',['full',['../structripple_1_1LedgerFill.html#acb9af41b82a8550a08d2288b6f9fc826a0fafa7070f778f38820f61903e1a5fc5',1,'ripple::LedgerFill::full()'],['../classripple_1_1RCLValidation.html#ae7989a377ded456eaab60cb44233e272',1,'ripple::RCLValidation::full()'],['../classripple_1_1PeerFinder_1_1RedirectHandouts.html#a4849b08546d6fb89a2eac09fdb1c826a',1,'ripple::PeerFinder::RedirectHandouts::full()'],['../classripple_1_1PeerFinder_1_1SlotHandouts.html#a235851832911250caa9d8480446a3686',1,'ripple::PeerFinder::SlotHandouts::full()'],['../classripple_1_1PeerFinder_1_1ConnectHandouts.html#a615cc9460ce6a14c289cab4f03699a16',1,'ripple::PeerFinder::ConnectHandouts::full()'],['../classripple_1_1test_1_1csf_1_1Validation.html#aa55e53b3e8466bcd0c082933d0584be5',1,'ripple::test::csf::Validation::full()'],['../namespaceripple_1_1PeerFinder.html#ae15e107cb3b0b67dbf43bd4a0a229c15ae9dc924f238fa6cc29465942875fe8f0',1,'ripple::PeerFinder::full()'],['../namespaceripple.html#a597325d7385ff9c19686e14e5bead510aba7de5bc6888294e5884b024a4c894f1',1,'ripple::FULL()']]], + ['full_3202',['full',['../structripple_1_1LedgerFill.html#acb9af41b82a8550a08d2288b6f9fc826a0fafa7070f778f38820f61903e1a5fc5',1,'ripple::LedgerFill::full()'],['../classripple_1_1RCLValidation.html#ae7989a377ded456eaab60cb44233e272',1,'ripple::RCLValidation::full()'],['../classripple_1_1PeerFinder_1_1RedirectHandouts.html#a4849b08546d6fb89a2eac09fdb1c826a',1,'ripple::PeerFinder::RedirectHandouts::full()'],['../classripple_1_1PeerFinder_1_1SlotHandouts.html#a235851832911250caa9d8480446a3686',1,'ripple::PeerFinder::SlotHandouts::full()'],['../classripple_1_1PeerFinder_1_1ConnectHandouts.html#a615cc9460ce6a14c289cab4f03699a16',1,'ripple::PeerFinder::ConnectHandouts::full()'],['../classripple_1_1test_1_1csf_1_1Validation.html#aa55e53b3e8466bcd0c082933d0584be5',1,'ripple::test::csf::Validation::full()'],['../namespaceripple.html#a597325d7385ff9c19686e14e5bead510aba7de5bc6888294e5884b024a4c894f1',1,'ripple::FULL()'],['../namespaceripple_1_1PeerFinder.html#ae15e107cb3b0b67dbf43bd4a0a229c15ae9dc924f238fa6cc29465942875fe8f0',1,'ripple::PeerFinder::full()']]], ['full_5f_3203',['full_',['../classripple_1_1LedgerReplayTask_1_1TaskParameter.html#a5ceda53410cfbf96ea7b26f40f0f7680',1,'ripple::LedgerReplayTask::TaskParameter::full_()'],['../classripple_1_1SHAMap.html#a51a31962c123b075983f235fbf2ae5c6',1,'ripple::SHAMap::full_()'],['../classripple_1_1test_1_1csf_1_1Validation.html#a3781ecf23a8785be828b977417d323bc',1,'ripple::test::csf::Validation::full_()']]], ['full_5fduration_3204',['full_duration',['../structripple_1_1NetworkOPsImp_1_1Stats.html#aac32f80938d2314139b4c42fe1ce2ebe',1,'ripple::NetworkOPsImp::Stats']]], ['full_5freply_5f_3205',['full_reply_',['../classripple_1_1PathRequest.html#ab324991f586a3dd494a3c874b7b193b2',1,'ripple::PathRequest']]], diff --git a/search/all_c.js b/search/all_c.js index 022505accf..342f1d28aa 100644 --- a/search/all_c.js +++ b/search/all_c.js @@ -120,7 +120,7 @@ var searchData= ['ledgergenesistimeresolution_5222',['ledgerGenesisTimeResolution',['../namespaceripple.html#a09147d6c9f73ea585dcd8d71779102a0',1,'ripple']]], ['ledgergranularity_5223',['ledgerGRANULARITY',['../structripple_1_1ConsensusParms.html#a418547e353c28850e08e49b5831ea0db',1,'ripple::ConsensusParms']]], ['ledgerhandler_5224',['LedgerHandler',['../classripple_1_1RPC_1_1LedgerHandler.html',1,'ripple::RPC::LedgerHandler'],['../classripple_1_1RPC_1_1LedgerHandler.html#afa39c881edcf53399964ec32b3312b1a',1,'ripple::RPC::LedgerHandler::LedgerHandler()']]], - ['ledgerhash_5225',['ledgerHash',['../structripple_1_1LedgerHashPair.html#a4b52e6ae64b9feac6fa5f8f8cbf1f9ce',1,'ripple::LedgerHashPair::ledgerHash()'],['../classripple_1_1RelationalDatabase.html#ae6ed6a653c43698a1480c0230b1e99aa',1,'ripple::RelationalDatabase::LedgerHash()'],['../namespaceripple_1_1test.html#a0bd41ec0e7d28cae7397e33711e22ff5',1,'ripple::test::ledgerHash()'],['../namespaceripple.html#af5a72d3e0d9b6913c13f688390b90796',1,'ripple::LedgerHash()']]], + ['ledgerhash_5225',['ledgerHash',['../structripple_1_1LedgerHashPair.html#a4b52e6ae64b9feac6fa5f8f8cbf1f9ce',1,'ripple::LedgerHashPair::ledgerHash()'],['../classripple_1_1RelationalDatabase.html#ae6ed6a653c43698a1480c0230b1e99aa',1,'ripple::RelationalDatabase::LedgerHash()'],['../namespaceripple.html#af5a72d3e0d9b6913c13f688390b90796',1,'ripple::LedgerHash()'],['../namespaceripple_1_1test.html#a0bd41ec0e7d28cae7397e33711e22ff5',1,'ripple::test::ledgerHash()']]], ['ledgerhashpair_5226',['LedgerHashPair',['../structripple_1_1LedgerHashPair.html',1,'ripple']]], ['ledgerheader_5227',['LedgerHeader',['../structripple_1_1LedgerHeader.html',1,'ripple::LedgerHeader'],['../structripple_1_1LedgerHeader.html#a03771f954fb5b32e330aec50ae5a87de',1,'ripple::LedgerHeader::LedgerHeader()']]], ['ledgerhistory_5228',['LedgerHistory',['../classripple_1_1LedgerHistory.html',1,'ripple::LedgerHistory'],['../structripple_1_1test_1_1NetworkHistory.html#aa728a0108b8ba4f8fc1e0492517c9178',1,'ripple::test::NetworkHistory::LedgerHistory()'],['../classripple_1_1LedgerHistory.html#a38f560ae8e28cf743665f2151b2826a9',1,'ripple::LedgerHistory::LedgerHistory()']]], diff --git a/search/all_f.js b/search/all_f.js index c78a8f2dbb..1b5ad649b9 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -12,12 +12,12 @@ var searchData= ['objectvalues_6913',['ObjectValues',['../classJson_1_1Value.html#ae2e1660b018d7fd8870fa51102c3c0b5',1,'Json::Value']]], ['observer_5fptr_6914',['observer_ptr',['http://en.cppreference.com/w/cpp/experimental/observer_ptr.html',1,'std::experimental']]], ['observing_6915',['observing',['../namespaceripple.html#a33f8b6e68b5f63faf2e9755cc251563eaea5234685f43dcab142e132c0e7be2ce',1,'ripple']]], - ['obsolete_6916',['OBSOLETE',['../namespaceripple.html#a2e97c395a5e1ef4ed1052299e0e60843ad8d4ab290d0006e2cbe215ff1b11e5ea',1,'ripple::OBSOLETE()'],['../namespaceripple.html#a1dcb4cf27e683bd94d11f5322836c689a28a39c5d0e09f2b9f423c9864ecf1db8',1,'ripple::obsolete()'],['../namespaceripple.html#aa5778f9faa15e3677dcda7975d9db7c6aec30c235d0eb792797af1aa1d11759a7',1,'ripple::Obsolete()']]], + ['obsolete_6916',['OBSOLETE',['../namespaceripple.html#a2e97c395a5e1ef4ed1052299e0e60843ad8d4ab290d0006e2cbe215ff1b11e5ea',1,'ripple::OBSOLETE()'],['../namespaceripple.html#aa5778f9faa15e3677dcda7975d9db7c6aec30c235d0eb792797af1aa1d11759a7',1,'ripple::Obsolete()'],['../namespaceripple.html#a1dcb4cf27e683bd94d11f5322836c689a28a39c5d0e09f2b9f423c9864ecf1db8',1,'ripple::obsolete()']]], ['obsolete_5f_6917',['obsolete_',['../classripple_1_1AmendmentTable__test.html#ac2dd191e7ab36fc50c090503d5581fed',1,'ripple::AmendmentTable_test']]], ['oct_6918',['oct',['http://en.cppreference.com/w/cpp/io/manip/hex.html',1,'std']]], ['off_6919',['Off',['../classripple_1_1test_1_1reduce__relay__test.html#a14441737f30e94f46c7a775c1a504b5bae88c8a9b1380f3477d59cadc90316492',1,'ripple::test::reduce_relay_test::Off()'],['../namespaceripple_1_1compression.html#a63d59b12f7e712c378860771ef3fdf5fad15305d7a4e34e02489c74a5ef542f36',1,'ripple::compression::Off()']]], ['off_5ftype_6920',['off_type',['../classbeast_1_1basic__logstream.html#a0b95c7e182067375f32c888f32eba9a9',1,'beast::basic_logstream']]], - ['offer_6921',['offer',['../namespaceripple_1_1keylet.html#a5d33427228ab1869c37fcf11132865f6',1,'ripple::keylet::offer(AccountID const &id, std::uint32_t seq) noexcept'],['../namespaceripple_1_1keylet.html#a9e67eb12de33c2313cbbdbea55691480',1,'ripple::keylet::offer(uint256 const &key) noexcept'],['../namespaceripple_1_1test_1_1jtx.html#ac423e2aa3fd7a14ae651849b430994f1',1,'ripple::test::jtx::offer()'],['../namespaceripple.html#a22768e0a41b646442c98d38f2f2a307ba10a5fc93fb200eb05fc816628f0b1d32',1,'ripple::OFFER()'],['../namespaceripple.html#a104b942a112488963dab002995f78830',1,'ripple::Offer()']]], + ['offer_6921',['OFFER',['../namespaceripple.html#a22768e0a41b646442c98d38f2f2a307ba10a5fc93fb200eb05fc816628f0b1d32',1,'ripple::OFFER()'],['../namespaceripple_1_1keylet.html#a5d33427228ab1869c37fcf11132865f6',1,'ripple::keylet::offer(AccountID const &id, std::uint32_t seq) noexcept'],['../namespaceripple_1_1keylet.html#a9e67eb12de33c2313cbbdbea55691480',1,'ripple::keylet::offer(uint256 const &key) noexcept'],['../namespaceripple_1_1test_1_1jtx.html#ac423e2aa3fd7a14ae651849b430994f1',1,'ripple::test::jtx::offer()'],['../namespaceripple.html#a104b942a112488963dab002995f78830',1,'ripple::Offer()']]], ['offer_5f_6922',['offer_',['../classripple_1_1TOfferStreamBase.html#a923068803dd65557f013b5f5bd759422',1,'ripple::TOfferStreamBase']]], ['offer_5fcancel_6923',['offer_cancel',['../namespaceripple_1_1test_1_1jtx.html#afd83a8b3855491e6341e1753822f7dc0',1,'ripple::test::jtx']]], ['offer_5fmanual_5ftest_6924',['Offer_manual_test',['../classripple_1_1test_1_1Offer__manual__test.html',1,'ripple::test']]], diff --git a/search/enumvalues_5.js b/search/enumvalues_5.js index 4567268e33..4a7fa511d9 100644 --- a/search/enumvalues_5.js +++ b/search/enumvalues_5.js @@ -16,6 +16,6 @@ var searchData= ['free_27164',['FREE',['../namespaceripple.html#a5d9fe757c37a7602a883d30b14e1bf3ca88c189a42c87aa49d667fc8ab76bc323',1,'ripple']]], ['freeze_27165',['freeze',['../namespaceripple_1_1test.html#acf39cc44acdd6b5089f2076897fa3911aeb479605271a1f0ffff9d87f2cab0b75',1,'ripple::test']]], ['fresh_27166',['FRESH',['../classripple_1_1Config.html#a6d275f46c1bb19d9a85917de5ca1b99ea0e7baa77ef581ef9dc61862d39238fe8',1,'ripple::Config']]], - ['full_27167',['full',['../structripple_1_1LedgerFill.html#acb9af41b82a8550a08d2288b6f9fc826a0fafa7070f778f38820f61903e1a5fc5',1,'ripple::LedgerFill::full()'],['../namespaceripple_1_1PeerFinder.html#ae15e107cb3b0b67dbf43bd4a0a229c15ae9dc924f238fa6cc29465942875fe8f0',1,'ripple::PeerFinder::full()'],['../namespaceripple.html#a597325d7385ff9c19686e14e5bead510aba7de5bc6888294e5884b024a4c894f1',1,'ripple::FULL()']]], + ['full_27167',['full',['../structripple_1_1LedgerFill.html#acb9af41b82a8550a08d2288b6f9fc826a0fafa7070f778f38820f61903e1a5fc5',1,'ripple::LedgerFill::full()'],['../namespaceripple.html#a597325d7385ff9c19686e14e5bead510aba7de5bc6888294e5884b024a4c894f1',1,'ripple::FULL()'],['../namespaceripple_1_1PeerFinder.html#ae15e107cb3b0b67dbf43bd4a0a229c15ae9dc924f238fa6cc29465942875fe8f0',1,'ripple::PeerFinder::full()']]], ['fullycanonical_27168',['fullyCanonical',['../namespaceripple.html#a286745fec5429abb3893001b4982522ba3e23eeda3fe3fb70d1e274eab59199d1',1,'ripple']]] ]; diff --git a/search/enumvalues_e.js b/search/enumvalues_e.js index f2541452c2..78cb375787 100644 --- a/search/enumvalues_e.js +++ b/search/enumvalues_e.js @@ -3,7 +3,7 @@ var searchData= ['object_27423',['object',['../classJson_1_1Writer.html#a53ecc840ddaba276dc429fd953d41ae0a8231fd5114a8727a3b32ae0094319e1a',1,'Json::Writer']]], ['objectvalue_27424',['objectValue',['../namespaceJson.html#a7d654b75c16a57007925868e38212b4eae8386dcfc36d1ae897745f7b4f77a1f6',1,'Json']]], ['observing_27425',['observing',['../namespaceripple.html#a33f8b6e68b5f63faf2e9755cc251563eaea5234685f43dcab142e132c0e7be2ce',1,'ripple']]], - ['obsolete_27426',['OBSOLETE',['../namespaceripple.html#a2e97c395a5e1ef4ed1052299e0e60843ad8d4ab290d0006e2cbe215ff1b11e5ea',1,'ripple::OBSOLETE()'],['../namespaceripple.html#a1dcb4cf27e683bd94d11f5322836c689a28a39c5d0e09f2b9f423c9864ecf1db8',1,'ripple::obsolete()'],['../namespaceripple.html#aa5778f9faa15e3677dcda7975d9db7c6aec30c235d0eb792797af1aa1d11759a7',1,'ripple::Obsolete()']]], + ['obsolete_27426',['OBSOLETE',['../namespaceripple.html#a2e97c395a5e1ef4ed1052299e0e60843ad8d4ab290d0006e2cbe215ff1b11e5ea',1,'ripple::OBSOLETE()'],['../namespaceripple.html#aa5778f9faa15e3677dcda7975d9db7c6aec30c235d0eb792797af1aa1d11759a7',1,'ripple::Obsolete()'],['../namespaceripple.html#a1dcb4cf27e683bd94d11f5322836c689a28a39c5d0e09f2b9f423c9864ecf1db8',1,'ripple::obsolete()']]], ['off_27427',['Off',['../classripple_1_1test_1_1reduce__relay__test.html#a14441737f30e94f46c7a775c1a504b5bae88c8a9b1380f3477d59cadc90316492',1,'ripple::test::reduce_relay_test::Off()'],['../namespaceripple_1_1compression.html#a63d59b12f7e712c378860771ef3fdf5fad15305d7a4e34e02489c74a5ef542f36',1,'ripple::compression::Off()']]], ['offer_27428',['OFFER',['../namespaceripple.html#a22768e0a41b646442c98d38f2f2a307ba10a5fc93fb200eb05fc816628f0b1d32',1,'ripple']]], ['ok_27429',['ok',['../namespaceripple_1_1NodeStore.html#af127c2e4fc73b5d35647147ef45b350ca852178e08b8b1f2eb19fd271e63830ef',1,'ripple::NodeStore::ok()'],['../namespaceripple_1_1Resource.html#ae12997de115c1cf0032794aa5ea1b15daadeb01a5ff7ccf891ad10c735db17661',1,'ripple::Resource::ok()']]], diff --git a/search/functions_15.js b/search/functions_15.js index dc97a3b567..708ab26902 100644 --- a/search/functions_15.js +++ b/search/functions_15.js @@ -20,7 +20,7 @@ var searchData= ['underflow_22541',['underflow',['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::basic_filebuf::underflow()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::basic_streambuf::underflow()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::basic_stringbuf::underflow()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::basic_syncbuf::underflow()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::filebuf::underflow()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::streambuf::underflow()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::stringbuf::underflow()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::strstreambuf::underflow()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::syncbuf::underflow()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::wfilebuf::underflow()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::wstreambuf::underflow()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::wstringbuf::underflow()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/underflow.html',1,'std::wsyncbuf::underflow()']]], ['underflow_5ferror_22542',['underflow_error',['http://en.cppreference.com/w/cpp/error/underflow_error.html',1,'std::underflow_error']]], ['undodelay_22543',['UndoDelay',['../structripple_1_1test_1_1Consensus__test_1_1UndoDelay.html#ad77d5ecdff941435a78cd8d970434363',1,'ripple::test::Consensus_test::UndoDelay']]], - ['unexpected_22544',['Unexpected',['../classripple_1_1Unexpected.html#ae84f51e4038d4ba8c436d2aa90a33ae8',1,'ripple::Unexpected::Unexpected()=delete'],['../classripple_1_1Unexpected.html#a8139a951450ea521bb2321a4f2417dce',1,'ripple::Unexpected::Unexpected(E const &e)'],['../classripple_1_1Unexpected.html#af2f4eee2862f4eab830c32717c524527',1,'ripple::Unexpected::Unexpected(E &&e)'],['../namespaceripple.html#ad6887fe0534dd3b0df2da54ff8994e2f',1,'ripple::Unexpected()'],['http://en.cppreference.com/w/cpp/error/unexpected.html',1,'std::unexpected()']]], + ['unexpected_22544',['Unexpected',['../classripple_1_1Unexpected.html#ae84f51e4038d4ba8c436d2aa90a33ae8',1,'ripple::Unexpected::Unexpected()=delete'],['../classripple_1_1Unexpected.html#a8139a951450ea521bb2321a4f2417dce',1,'ripple::Unexpected::Unexpected(E const &e)'],['../classripple_1_1Unexpected.html#af2f4eee2862f4eab830c32717c524527',1,'ripple::Unexpected::Unexpected(E &&e)'],['http://en.cppreference.com/w/cpp/error/unexpected.html',1,'std::unexpected()'],['../namespaceripple.html#ad6887fe0534dd3b0df2da54ff8994e2f',1,'ripple::Unexpected()']]], ['unfunded_22545',['unfunded',['../classripple_1_1BasicTaker.html#af51ec8e0b4321092a847364f23ef2beb',1,'ripple::BasicTaker']]], ['unget_22546',['unget',['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::basic_fstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::basic_ifstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::basic_iostream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::basic_istream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::basic_istringstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::basic_stringstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::fstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::ifstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::iostream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::istream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::istringstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::istrstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::stringstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::strstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::wfstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::wifstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::wiostream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::wistream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::wistringstream::unget()'],['http://en.cppreference.com/w/cpp/io/basic_istream/unget.html',1,'std::wstringstream::unget()']]], ['ungetc_22547',['ungetc',['http://en.cppreference.com/w/cpp/io/c/ungetc.html',1,'std']]],