diff --git a/STInteger_8cpp_source.html b/STInteger_8cpp_source.html index cefc5a4541..50c7d0c1fa 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:494
+
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:478
std::to_string
T to_string(T... args)
ripple::STI_UINT16
@ STI_UINT16
Definition: SField.h:61
std::errc
diff --git a/STParsedJSON_8cpp_source.html b/STParsedJSON_8cpp_source.html index 0c64996b6c..ad2d5b5dc0 100644 --- a/STParsedJSON_8cpp_source.html +++ b/STParsedJSON_8cpp_source.html @@ -1137,7 +1137,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:110
-
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:494
+
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:478
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 379fec82a7..4e642d3e24 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:494
+
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:478
ripple::PublicKey
A public key.
Definition: PublicKey.h:61
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 aa5f20c5cc..e1fe14765e 100644 --- a/TxFormats_8cpp_source.html +++ b/TxFormats_8cpp_source.html @@ -98,488 +98,474 @@ $(function() {
27 
28 TxFormats::TxFormats()
29 {
-
30 #pragma push_macro("PSEUDO_TXN_COMMON_FIELDS")
-
31 
-
32  // clang-format off
-
33 
-
34  #define PSEUDO_TXN_COMMON_FIELDS \
-
35  {sfTransactionType, soeREQUIRED}, \
-
36  {sfFlags, soeOPTIONAL}, \
-
37  {sfSourceTag, soeOPTIONAL}, \
-
38  {sfAccount, soeREQUIRED}, \
-
39  {sfSequence, soeREQUIRED}, \
-
40  {sfPreviousTxnID, soeOPTIONAL}, /* emulate027 */ \
-
41  {sfLastLedgerSequence, soeOPTIONAL}, \
-
42  {sfAccountTxnID, soeOPTIONAL}, \
-
43  {sfFee, soeREQUIRED}, \
-
44  {sfOperationLimit, soeOPTIONAL}, \
-
45  {sfMemos, soeOPTIONAL}, \
-
46  {sfSigningPubKey, soeREQUIRED}, \
-
47  {sfTxnSignature, soeOPTIONAL}, \
-
48  {sfSigners, soeOPTIONAL}, /* submit_multisigned */ \
-
49  {sfNetworkID, soeOPTIONAL}
-
50 
-
51  // clang-format on
-
52 
-
53  // Fields shared by all pseudo-transaction txFormats:
-
54  static const std::initializer_list<SOElement> pseudoCommonFields{
-
55  PSEUDO_TXN_COMMON_FIELDS,
-
56  };
-
57 
-
58  // Fields shared by all normal transaction txFormats:
-
59  static const std::initializer_list<SOElement> commonFields{
-
60  PSEUDO_TXN_COMMON_FIELDS,
-
61  {sfTicketSequence, soeOPTIONAL},
-
62  };
-
63 
-
64 #pragma pop_macro("PSEUDO_TXN_COMMON_FIELDS")
+
30  // Fields shared by all txFormats:
+
31  static const std::initializer_list<SOElement> commonFields{
+
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  {sfTicketSequence, soeOPTIONAL},
+
45  {sfTxnSignature, soeOPTIONAL},
+
46  {sfSigners, soeOPTIONAL}, // submit_multisigned
+
47  {sfNetworkID, soeOPTIONAL},
+
48  };
+
49 
+
50  add(jss::AccountSet,
+
51  ttACCOUNT_SET,
+
52  {
+
53  {sfEmailHash, soeOPTIONAL},
+
54  {sfWalletLocator, soeOPTIONAL},
+
55  {sfWalletSize, soeOPTIONAL},
+
56  {sfMessageKey, soeOPTIONAL},
+
57  {sfDomain, soeOPTIONAL},
+
58  {sfTransferRate, soeOPTIONAL},
+
59  {sfSetFlag, soeOPTIONAL},
+
60  {sfClearFlag, soeOPTIONAL},
+
61  {sfTickSize, soeOPTIONAL},
+
62  {sfNFTokenMinter, soeOPTIONAL},
+
63  },
+
64  commonFields);
65 
-
66  add(jss::AccountSet,
-
67  ttACCOUNT_SET,
+
66  add(jss::TrustSet,
+
67  ttTRUST_SET,
68  {
-
69  {sfEmailHash, soeOPTIONAL},
-
70  {sfWalletLocator, soeOPTIONAL},
-
71  {sfWalletSize, soeOPTIONAL},
-
72  {sfMessageKey, soeOPTIONAL},
-
73  {sfDomain, soeOPTIONAL},
-
74  {sfTransferRate, soeOPTIONAL},
-
75  {sfSetFlag, soeOPTIONAL},
-
76  {sfClearFlag, soeOPTIONAL},
-
77  {sfTickSize, soeOPTIONAL},
-
78  {sfNFTokenMinter, soeOPTIONAL},
-
79  },
-
80  commonFields);
-
81 
-
82  add(jss::TrustSet,
-
83  ttTRUST_SET,
-
84  {
-
85  {sfLimitAmount, soeOPTIONAL},
-
86  {sfQualityIn, soeOPTIONAL},
-
87  {sfQualityOut, soeOPTIONAL},
-
88  },
-
89  commonFields);
-
90 
-
91  add(jss::OfferCreate,
-
92  ttOFFER_CREATE,
-
93  {
-
94  {sfTakerPays, soeREQUIRED},
-
95  {sfTakerGets, soeREQUIRED},
-
96  {sfExpiration, soeOPTIONAL},
-
97  {sfOfferSequence, soeOPTIONAL},
-
98  },
-
99  commonFields);
-
100 
-
101  add(jss::AMMCreate,
-
102  ttAMM_CREATE,
-
103  {
-
104  {sfAmount, soeREQUIRED},
-
105  {sfAmount2, soeREQUIRED},
-
106  {sfTradingFee, soeREQUIRED},
-
107  },
-
108  commonFields);
-
109 
-
110  add(jss::AMMDeposit,
-
111  ttAMM_DEPOSIT,
-
112  {
-
113  {sfAsset, soeREQUIRED},
-
114  {sfAsset2, soeREQUIRED},
-
115  {sfAmount, soeOPTIONAL},
-
116  {sfAmount2, soeOPTIONAL},
-
117  {sfEPrice, soeOPTIONAL},
-
118  {sfLPTokenOut, soeOPTIONAL},
-
119  {sfTradingFee, soeOPTIONAL},
-
120  },
-
121  commonFields);
-
122 
-
123  add(jss::AMMWithdraw,
-
124  ttAMM_WITHDRAW,
-
125  {
-
126  {sfAsset, soeREQUIRED},
-
127  {sfAsset2, soeREQUIRED},
-
128  {sfAmount, soeOPTIONAL},
-
129  {sfAmount2, soeOPTIONAL},
-
130  {sfEPrice, soeOPTIONAL},
-
131  {sfLPTokenIn, soeOPTIONAL},
-
132  },
-
133  commonFields);
-
134 
-
135  add(jss::AMMVote,
-
136  ttAMM_VOTE,
-
137  {
-
138  {sfAsset, soeREQUIRED},
-
139  {sfAsset2, soeREQUIRED},
-
140  {sfTradingFee, soeREQUIRED},
-
141  },
-
142  commonFields);
-
143 
-
144  add(jss::AMMBid,
-
145  ttAMM_BID,
-
146  {
-
147  {sfAsset, soeREQUIRED},
-
148  {sfAsset2, soeREQUIRED},
-
149  {sfBidMin, soeOPTIONAL},
-
150  {sfBidMax, soeOPTIONAL},
-
151  {sfAuthAccounts, soeOPTIONAL},
-
152  },
-
153  commonFields);
-
154 
-
155  add(jss::AMMDelete,
-
156  ttAMM_DELETE,
-
157  {
-
158  {sfAsset, soeREQUIRED},
-
159  {sfAsset2, soeREQUIRED},
-
160  },
-
161  commonFields);
-
162 
-
163  add(jss::OfferCancel,
-
164  ttOFFER_CANCEL,
-
165  {
-
166  {sfOfferSequence, soeREQUIRED},
-
167  },
-
168  commonFields);
-
169 
-
170  add(jss::SetRegularKey,
-
171  ttREGULAR_KEY_SET,
-
172  {
-
173  {sfRegularKey, soeOPTIONAL},
-
174  },
-
175  commonFields);
-
176 
-
177  add(jss::Payment,
-
178  ttPAYMENT,
-
179  {
-
180  {sfDestination, soeREQUIRED},
-
181  {sfAmount, soeREQUIRED},
-
182  {sfSendMax, soeOPTIONAL},
-
183  {sfPaths, soeDEFAULT},
-
184  {sfInvoiceID, soeOPTIONAL},
-
185  {sfDestinationTag, soeOPTIONAL},
-
186  {sfDeliverMin, soeOPTIONAL},
-
187  },
-
188  commonFields);
-
189 
-
190  add(jss::EscrowCreate,
-
191  ttESCROW_CREATE,
-
192  {
-
193  {sfDestination, soeREQUIRED},
-
194  {sfAmount, soeREQUIRED},
-
195  {sfCondition, soeOPTIONAL},
-
196  {sfCancelAfter, soeOPTIONAL},
-
197  {sfFinishAfter, soeOPTIONAL},
-
198  {sfDestinationTag, soeOPTIONAL},
-
199  },
-
200  commonFields);
-
201 
-
202  add(jss::EscrowFinish,
-
203  ttESCROW_FINISH,
-
204  {
-
205  {sfOwner, soeREQUIRED},
-
206  {sfOfferSequence, soeREQUIRED},
-
207  {sfFulfillment, soeOPTIONAL},
-
208  {sfCondition, soeOPTIONAL},
+
69  {sfLimitAmount, soeOPTIONAL},
+
70  {sfQualityIn, soeOPTIONAL},
+
71  {sfQualityOut, soeOPTIONAL},
+
72  },
+
73  commonFields);
+
74 
+
75  add(jss::OfferCreate,
+
76  ttOFFER_CREATE,
+
77  {
+
78  {sfTakerPays, soeREQUIRED},
+
79  {sfTakerGets, soeREQUIRED},
+
80  {sfExpiration, soeOPTIONAL},
+
81  {sfOfferSequence, soeOPTIONAL},
+
82  },
+
83  commonFields);
+
84 
+
85  add(jss::AMMCreate,
+
86  ttAMM_CREATE,
+
87  {
+
88  {sfAmount, soeREQUIRED},
+
89  {sfAmount2, soeREQUIRED},
+
90  {sfTradingFee, soeREQUIRED},
+
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  {sfTradingFee, soeOPTIONAL},
+
104  },
+
105  commonFields);
+
106 
+
107  add(jss::AMMWithdraw,
+
108  ttAMM_WITHDRAW,
+
109  {
+
110  {sfAsset, soeREQUIRED},
+
111  {sfAsset2, soeREQUIRED},
+
112  {sfAmount, soeOPTIONAL},
+
113  {sfAmount2, soeOPTIONAL},
+
114  {sfEPrice, soeOPTIONAL},
+
115  {sfLPTokenIn, soeOPTIONAL},
+
116  },
+
117  commonFields);
+
118 
+
119  add(jss::AMMVote,
+
120  ttAMM_VOTE,
+
121  {
+
122  {sfAsset, soeREQUIRED},
+
123  {sfAsset2, soeREQUIRED},
+
124  {sfTradingFee, soeREQUIRED},
+
125  },
+
126  commonFields);
+
127 
+
128  add(jss::AMMBid,
+
129  ttAMM_BID,
+
130  {
+
131  {sfAsset, soeREQUIRED},
+
132  {sfAsset2, soeREQUIRED},
+
133  {sfBidMin, soeOPTIONAL},
+
134  {sfBidMax, soeOPTIONAL},
+
135  {sfAuthAccounts, soeOPTIONAL},
+
136  },
+
137  commonFields);
+
138 
+
139  add(jss::AMMDelete,
+
140  ttAMM_DELETE,
+
141  {
+
142  {sfAsset, soeREQUIRED},
+
143  {sfAsset2, soeREQUIRED},
+
144  },
+
145  commonFields);
+
146 
+
147  add(jss::OfferCancel,
+
148  ttOFFER_CANCEL,
+
149  {
+
150  {sfOfferSequence, soeREQUIRED},
+
151  },
+
152  commonFields);
+
153 
+
154  add(jss::SetRegularKey,
+
155  ttREGULAR_KEY_SET,
+
156  {
+
157  {sfRegularKey, soeOPTIONAL},
+
158  },
+
159  commonFields);
+
160 
+
161  add(jss::Payment,
+
162  ttPAYMENT,
+
163  {
+
164  {sfDestination, soeREQUIRED},
+
165  {sfAmount, soeREQUIRED},
+
166  {sfSendMax, soeOPTIONAL},
+
167  {sfPaths, soeDEFAULT},
+
168  {sfInvoiceID, soeOPTIONAL},
+
169  {sfDestinationTag, soeOPTIONAL},
+
170  {sfDeliverMin, soeOPTIONAL},
+
171  },
+
172  commonFields);
+
173 
+
174  add(jss::EscrowCreate,
+
175  ttESCROW_CREATE,
+
176  {
+
177  {sfDestination, soeREQUIRED},
+
178  {sfAmount, soeREQUIRED},
+
179  {sfCondition, soeOPTIONAL},
+
180  {sfCancelAfter, soeOPTIONAL},
+
181  {sfFinishAfter, soeOPTIONAL},
+
182  {sfDestinationTag, soeOPTIONAL},
+
183  },
+
184  commonFields);
+
185 
+
186  add(jss::EscrowFinish,
+
187  ttESCROW_FINISH,
+
188  {
+
189  {sfOwner, soeREQUIRED},
+
190  {sfOfferSequence, soeREQUIRED},
+
191  {sfFulfillment, soeOPTIONAL},
+
192  {sfCondition, soeOPTIONAL},
+
193  },
+
194  commonFields);
+
195 
+
196  add(jss::EscrowCancel,
+
197  ttESCROW_CANCEL,
+
198  {
+
199  {sfOwner, soeREQUIRED},
+
200  {sfOfferSequence, soeREQUIRED},
+
201  },
+
202  commonFields);
+
203 
+
204  add(jss::EnableAmendment,
+
205  ttAMENDMENT,
+
206  {
+
207  {sfLedgerSequence, soeREQUIRED},
+
208  {sfAmendment, soeREQUIRED},
209  },
210  commonFields);
211 
-
212  add(jss::EscrowCancel,
-
213  ttESCROW_CANCEL,
+
212  add(jss::SetFee,
+
213  ttFEE,
214  {
-
215  {sfOwner, soeREQUIRED},
-
216  {sfOfferSequence, soeREQUIRED},
-
217  },
-
218  commonFields);
-
219 
-
220  add(jss::EnableAmendment,
-
221  ttAMENDMENT,
-
222  {
-
223  {sfLedgerSequence, soeREQUIRED},
-
224  {sfAmendment, soeREQUIRED},
+
215  {sfLedgerSequence, soeOPTIONAL},
+
216  // Old version uses raw numbers
+
217  {sfBaseFee, soeOPTIONAL},
+
218  {sfReferenceFeeUnits, soeOPTIONAL},
+
219  {sfReserveBase, soeOPTIONAL},
+
220  {sfReserveIncrement, soeOPTIONAL},
+
221  // New version uses Amounts
+
222  {sfBaseFeeDrops, soeOPTIONAL},
+
223  {sfReserveBaseDrops, soeOPTIONAL},
+
224  {sfReserveIncrementDrops, soeOPTIONAL},
225  },
-
226  pseudoCommonFields);
+
226  commonFields);
227 
-
228  add(jss::SetFee,
-
229  ttFEE,
+
228  add(jss::UNLModify,
+
229  ttUNL_MODIFY,
230  {
-
231  {sfLedgerSequence, soeOPTIONAL},
-
232  // Old version uses raw numbers
-
233  {sfBaseFee, soeOPTIONAL},
-
234  {sfReferenceFeeUnits, soeOPTIONAL},
-
235  {sfReserveBase, soeOPTIONAL},
-
236  {sfReserveIncrement, soeOPTIONAL},
-
237  // New version uses Amounts
-
238  {sfBaseFeeDrops, soeOPTIONAL},
-
239  {sfReserveBaseDrops, soeOPTIONAL},
-
240  {sfReserveIncrementDrops, soeOPTIONAL},
+
231  {sfUNLModifyDisabling, soeREQUIRED},
+
232  {sfLedgerSequence, soeREQUIRED},
+
233  {sfUNLModifyValidator, soeREQUIRED},
+
234  },
+
235  commonFields);
+
236 
+
237  add(jss::TicketCreate,
+
238  ttTICKET_CREATE,
+
239  {
+
240  {sfTicketCount, soeREQUIRED},
241  },
-
242  pseudoCommonFields);
+
242  commonFields);
243 
-
244  add(jss::UNLModify,
-
245  ttUNL_MODIFY,
-
246  {
-
247  {sfUNLModifyDisabling, soeREQUIRED},
-
248  {sfLedgerSequence, soeREQUIRED},
-
249  {sfUNLModifyValidator, soeREQUIRED},
-
250  },
-
251  pseudoCommonFields);
-
252 
-
253  add(jss::TicketCreate,
-
254  ttTICKET_CREATE,
-
255  {
-
256  {sfTicketCount, soeREQUIRED},
-
257  },
-
258  commonFields);
-
259 
-
260  // The SignerEntries are optional because a SignerList is deleted by
-
261  // setting the SignerQuorum to zero and omitting SignerEntries.
-
262  add(jss::SignerListSet,
-
263  ttSIGNER_LIST_SET,
-
264  {
-
265  {sfSignerQuorum, soeREQUIRED},
-
266  {sfSignerEntries, soeOPTIONAL},
-
267  },
-
268  commonFields);
-
269 
-
270  add(jss::PaymentChannelCreate,
-
271  ttPAYCHAN_CREATE,
-
272  {
-
273  {sfDestination, soeREQUIRED},
-
274  {sfAmount, soeREQUIRED},
-
275  {sfSettleDelay, soeREQUIRED},
-
276  {sfPublicKey, soeREQUIRED},
-
277  {sfCancelAfter, soeOPTIONAL},
-
278  {sfDestinationTag, soeOPTIONAL},
-
279  },
-
280  commonFields);
-
281 
-
282  add(jss::PaymentChannelFund,
-
283  ttPAYCHAN_FUND,
-
284  {
-
285  {sfChannel, soeREQUIRED},
-
286  {sfAmount, soeREQUIRED},
-
287  {sfExpiration, soeOPTIONAL},
-
288  },
-
289  commonFields);
-
290 
-
291  add(jss::PaymentChannelClaim,
-
292  ttPAYCHAN_CLAIM,
-
293  {
-
294  {sfChannel, soeREQUIRED},
-
295  {sfAmount, soeOPTIONAL},
-
296  {sfBalance, soeOPTIONAL},
-
297  {sfSignature, soeOPTIONAL},
-
298  {sfPublicKey, 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},
+
244  // The SignerEntries are optional because a SignerList is deleted by
+
245  // setting the SignerQuorum to zero and omitting SignerEntries.
+
246  add(jss::SignerListSet,
+
247  ttSIGNER_LIST_SET,
+
248  {
+
249  {sfSignerQuorum, soeREQUIRED},
+
250  {sfSignerEntries, soeOPTIONAL},
+
251  },
+
252  commonFields);
+
253 
+
254  add(jss::PaymentChannelCreate,
+
255  ttPAYCHAN_CREATE,
+
256  {
+
257  {sfDestination, soeREQUIRED},
+
258  {sfAmount, soeREQUIRED},
+
259  {sfSettleDelay, soeREQUIRED},
+
260  {sfPublicKey, soeREQUIRED},
+
261  {sfCancelAfter, soeOPTIONAL},
+
262  {sfDestinationTag, soeOPTIONAL},
+
263  },
+
264  commonFields);
+
265 
+
266  add(jss::PaymentChannelFund,
+
267  ttPAYCHAN_FUND,
+
268  {
+
269  {sfChannel, soeREQUIRED},
+
270  {sfAmount, soeREQUIRED},
+
271  {sfExpiration, soeOPTIONAL},
+
272  },
+
273  commonFields);
+
274 
+
275  add(jss::PaymentChannelClaim,
+
276  ttPAYCHAN_CLAIM,
+
277  {
+
278  {sfChannel, soeREQUIRED},
+
279  {sfAmount, soeOPTIONAL},
+
280  {sfBalance, soeOPTIONAL},
+
281  {sfSignature, soeOPTIONAL},
+
282  {sfPublicKey, soeOPTIONAL},
+
283  },
+
284  commonFields);
+
285 
+
286  add(jss::CheckCreate,
+
287  ttCHECK_CREATE,
+
288  {
+
289  {sfDestination, soeREQUIRED},
+
290  {sfSendMax, soeREQUIRED},
+
291  {sfExpiration, soeOPTIONAL},
+
292  {sfDestinationTag, soeOPTIONAL},
+
293  {sfInvoiceID, soeOPTIONAL},
+
294  },
+
295  commonFields);
+
296 
+
297  add(jss::CheckCash,
+
298  ttCHECK_CASH,
+
299  {
+
300  {sfCheckID, soeREQUIRED},
+
301  {sfAmount, soeOPTIONAL},
+
302  {sfDeliverMin, soeOPTIONAL},
+
303  },
+
304  commonFields);
+
305 
+
306  add(jss::CheckCancel,
+
307  ttCHECK_CANCEL,
+
308  {
+
309  {sfCheckID, soeREQUIRED},
310  },
311  commonFields);
312 
-
313  add(jss::CheckCash,
-
314  ttCHECK_CASH,
+
313  add(jss::AccountDelete,
+
314  ttACCOUNT_DELETE,
315  {
-
316  {sfCheckID, soeREQUIRED},
-
317  {sfAmount, soeOPTIONAL},
-
318  {sfDeliverMin, soeOPTIONAL},
-
319  },
-
320  commonFields);
-
321 
-
322  add(jss::CheckCancel,
-
323  ttCHECK_CANCEL,
-
324  {
-
325  {sfCheckID, soeREQUIRED},
+
316  {sfDestination, soeREQUIRED},
+
317  {sfDestinationTag, soeOPTIONAL},
+
318  },
+
319  commonFields);
+
320 
+
321  add(jss::DepositPreauth,
+
322  ttDEPOSIT_PREAUTH,
+
323  {
+
324  {sfAuthorize, soeOPTIONAL},
+
325  {sfUnauthorize, soeOPTIONAL},
326  },
327  commonFields);
328 
-
329  add(jss::AccountDelete,
-
330  ttACCOUNT_DELETE,
+
329  add(jss::NFTokenMint,
+
330  ttNFTOKEN_MINT,
331  {
-
332  {sfDestination, soeREQUIRED},
-
333  {sfDestinationTag, soeOPTIONAL},
-
334  },
-
335  commonFields);
-
336 
-
337  add(jss::DepositPreauth,
-
338  ttDEPOSIT_PREAUTH,
-
339  {
-
340  {sfAuthorize, soeOPTIONAL},
-
341  {sfUnauthorize, soeOPTIONAL},
-
342  },
-
343  commonFields);
-
344 
-
345  add(jss::NFTokenMint,
-
346  ttNFTOKEN_MINT,
-
347  {
-
348  {sfNFTokenTaxon, soeREQUIRED},
-
349  {sfTransferFee, soeOPTIONAL},
-
350  {sfIssuer, soeOPTIONAL},
-
351  {sfURI, soeOPTIONAL},
-
352  },
-
353  commonFields);
-
354 
-
355  add(jss::NFTokenBurn,
-
356  ttNFTOKEN_BURN,
-
357  {
-
358  {sfNFTokenID, soeREQUIRED},
-
359  {sfOwner, soeOPTIONAL},
-
360  },
-
361  commonFields);
-
362 
-
363  add(jss::NFTokenCreateOffer,
-
364  ttNFTOKEN_CREATE_OFFER,
-
365  {
-
366  {sfNFTokenID, soeREQUIRED},
-
367  {sfAmount, soeREQUIRED},
-
368  {sfDestination, soeOPTIONAL},
-
369  {sfOwner, soeOPTIONAL},
-
370  {sfExpiration, soeOPTIONAL},
+
332  {sfNFTokenTaxon, soeREQUIRED},
+
333  {sfTransferFee, soeOPTIONAL},
+
334  {sfIssuer, soeOPTIONAL},
+
335  {sfURI, soeOPTIONAL},
+
336  },
+
337  commonFields);
+
338 
+
339  add(jss::NFTokenBurn,
+
340  ttNFTOKEN_BURN,
+
341  {
+
342  {sfNFTokenID, soeREQUIRED},
+
343  {sfOwner, soeOPTIONAL},
+
344  },
+
345  commonFields);
+
346 
+
347  add(jss::NFTokenCreateOffer,
+
348  ttNFTOKEN_CREATE_OFFER,
+
349  {
+
350  {sfNFTokenID, soeREQUIRED},
+
351  {sfAmount, soeREQUIRED},
+
352  {sfDestination, soeOPTIONAL},
+
353  {sfOwner, soeOPTIONAL},
+
354  {sfExpiration, soeOPTIONAL},
+
355  },
+
356  commonFields);
+
357 
+
358  add(jss::NFTokenCancelOffer,
+
359  ttNFTOKEN_CANCEL_OFFER,
+
360  {
+
361  {sfNFTokenOffers, soeREQUIRED},
+
362  },
+
363  commonFields);
+
364 
+
365  add(jss::NFTokenAcceptOffer,
+
366  ttNFTOKEN_ACCEPT_OFFER,
+
367  {
+
368  {sfNFTokenBuyOffer, soeOPTIONAL},
+
369  {sfNFTokenSellOffer, soeOPTIONAL},
+
370  {sfNFTokenBrokerFee, soeOPTIONAL},
371  },
372  commonFields);
373 
-
374  add(jss::NFTokenCancelOffer,
-
375  ttNFTOKEN_CANCEL_OFFER,
+
374  add(jss::Clawback,
+
375  ttCLAWBACK,
376  {
-
377  {sfNFTokenOffers, soeREQUIRED},
+
377  {sfAmount, soeREQUIRED},
378  },
379  commonFields);
380 
-
381  add(jss::NFTokenAcceptOffer,
-
382  ttNFTOKEN_ACCEPT_OFFER,
+
381  add(jss::XChainCreateBridge,
+
382  ttXCHAIN_CREATE_BRIDGE,
383  {
-
384  {sfNFTokenBuyOffer, soeOPTIONAL},
-
385  {sfNFTokenSellOffer, soeOPTIONAL},
-
386  {sfNFTokenBrokerFee, soeOPTIONAL},
+
384  {sfXChainBridge, soeREQUIRED},
+
385  {sfSignatureReward, soeREQUIRED},
+
386  {sfMinAccountCreateAmount, soeOPTIONAL},
387  },
388  commonFields);
389 
-
390  add(jss::Clawback,
-
391  ttCLAWBACK,
+
390  add(jss::XChainModifyBridge,
+
391  ttXCHAIN_MODIFY_BRIDGE,
392  {
-
393  {sfAmount, soeREQUIRED},
-
394  },
-
395  commonFields);
-
396 
-
397  add(jss::XChainCreateBridge,
-
398  ttXCHAIN_CREATE_BRIDGE,
-
399  {
-
400  {sfXChainBridge, soeREQUIRED},
-
401  {sfSignatureReward, soeREQUIRED},
-
402  {sfMinAccountCreateAmount, soeOPTIONAL},
-
403  },
-
404  commonFields);
-
405 
-
406  add(jss::XChainModifyBridge,
-
407  ttXCHAIN_MODIFY_BRIDGE,
-
408  {
-
409  {sfXChainBridge, soeREQUIRED},
-
410  {sfSignatureReward, soeOPTIONAL},
-
411  {sfMinAccountCreateAmount, soeOPTIONAL},
-
412  },
-
413  commonFields);
-
414 
-
415  add(jss::XChainCreateClaimID,
-
416  ttXCHAIN_CREATE_CLAIM_ID,
-
417  {
-
418  {sfXChainBridge, soeREQUIRED},
-
419  {sfSignatureReward, soeREQUIRED},
-
420  {sfOtherChainSource, soeREQUIRED},
-
421  },
-
422  commonFields);
-
423 
-
424  add(jss::XChainCommit,
-
425  ttXCHAIN_COMMIT,
-
426  {
-
427  {sfXChainBridge, soeREQUIRED},
-
428  {sfXChainClaimID, soeREQUIRED},
-
429  {sfAmount, soeREQUIRED},
-
430  {sfOtherChainDestination, soeOPTIONAL},
-
431  },
-
432  commonFields);
+
393  {sfXChainBridge, soeREQUIRED},
+
394  {sfSignatureReward, soeOPTIONAL},
+
395  {sfMinAccountCreateAmount, soeOPTIONAL},
+
396  },
+
397  commonFields);
+
398 
+
399  add(jss::XChainCreateClaimID,
+
400  ttXCHAIN_CREATE_CLAIM_ID,
+
401  {
+
402  {sfXChainBridge, soeREQUIRED},
+
403  {sfSignatureReward, soeREQUIRED},
+
404  {sfOtherChainSource, soeREQUIRED},
+
405  },
+
406  commonFields);
+
407 
+
408  add(jss::XChainCommit,
+
409  ttXCHAIN_COMMIT,
+
410  {
+
411  {sfXChainBridge, soeREQUIRED},
+
412  {sfXChainClaimID, soeREQUIRED},
+
413  {sfAmount, soeREQUIRED},
+
414  {sfOtherChainDestination, soeOPTIONAL},
+
415  },
+
416  commonFields);
+
417 
+
418  add(jss::XChainClaim,
+
419  ttXCHAIN_CLAIM,
+
420  {
+
421  {sfXChainBridge, soeREQUIRED},
+
422  {sfXChainClaimID, soeREQUIRED},
+
423  {sfDestination, soeREQUIRED},
+
424  {sfDestinationTag, soeOPTIONAL},
+
425  {sfAmount, soeREQUIRED},
+
426  },
+
427  commonFields);
+
428 
+
429  add(jss::XChainAddClaimAttestation,
+
430  ttXCHAIN_ADD_CLAIM_ATTESTATION,
+
431  {
+
432  {sfXChainBridge, soeREQUIRED},
433 
-
434  add(jss::XChainClaim,
-
435  ttXCHAIN_CLAIM,
-
436  {
-
437  {sfXChainBridge, soeREQUIRED},
-
438  {sfXChainClaimID, soeREQUIRED},
-
439  {sfDestination, soeREQUIRED},
-
440  {sfDestinationTag, soeOPTIONAL},
-
441  {sfAmount, soeREQUIRED},
-
442  },
-
443  commonFields);
-
444 
-
445  add(jss::XChainAddClaimAttestation,
-
446  ttXCHAIN_ADD_CLAIM_ATTESTATION,
-
447  {
-
448  {sfXChainBridge, soeREQUIRED},
-
449 
-
450  {sfAttestationSignerAccount, soeREQUIRED},
-
451  {sfPublicKey, soeREQUIRED},
-
452  {sfSignature, soeREQUIRED},
-
453  {sfOtherChainSource, soeREQUIRED},
-
454  {sfAmount, soeREQUIRED},
-
455  {sfAttestationRewardAccount, soeREQUIRED},
-
456  {sfWasLockingChainSend, soeREQUIRED},
-
457 
-
458  {sfXChainClaimID, soeREQUIRED},
-
459  {sfDestination, soeOPTIONAL},
-
460  },
-
461  commonFields);
-
462 
-
463  add(jss::XChainAddAccountCreateAttestation,
-
464  ttXCHAIN_ADD_ACCOUNT_CREATE_ATTESTATION,
-
465  {
-
466  {sfXChainBridge, soeREQUIRED},
-
467 
-
468  {sfAttestationSignerAccount, soeREQUIRED},
-
469  {sfPublicKey, soeREQUIRED},
-
470  {sfSignature, soeREQUIRED},
-
471  {sfOtherChainSource, soeREQUIRED},
-
472  {sfAmount, soeREQUIRED},
-
473  {sfAttestationRewardAccount, soeREQUIRED},
-
474  {sfWasLockingChainSend, soeREQUIRED},
-
475 
-
476  {sfXChainAccountCreateCount, soeREQUIRED},
-
477  {sfDestination, soeREQUIRED},
-
478  {sfSignatureReward, soeREQUIRED},
-
479  },
-
480  commonFields);
-
481 
-
482  add(jss::XChainAccountCreateCommit,
-
483  ttXCHAIN_ACCOUNT_CREATE_COMMIT,
-
484  {
-
485  {sfXChainBridge, soeREQUIRED},
-
486  {sfDestination, soeREQUIRED},
-
487  {sfAmount, soeREQUIRED},
-
488  {sfSignatureReward, soeREQUIRED},
-
489  },
-
490  commonFields);
-
491 }
-
492 
-
493 TxFormats const&
-
494 TxFormats::getInstance()
-
495 {
-
496  static TxFormats const instance;
-
497  return instance;
-
498 }
-
499 
-
500 } // namespace ripple
+
434  {sfAttestationSignerAccount, soeREQUIRED},
+
435  {sfPublicKey, soeREQUIRED},
+
436  {sfSignature, soeREQUIRED},
+
437  {sfOtherChainSource, soeREQUIRED},
+
438  {sfAmount, soeREQUIRED},
+
439  {sfAttestationRewardAccount, soeREQUIRED},
+
440  {sfWasLockingChainSend, soeREQUIRED},
+
441 
+
442  {sfXChainClaimID, soeREQUIRED},
+
443  {sfDestination, soeOPTIONAL},
+
444  },
+
445  commonFields);
+
446 
+
447  add(jss::XChainAddAccountCreateAttestation,
+
448  ttXCHAIN_ADD_ACCOUNT_CREATE_ATTESTATION,
+
449  {
+
450  {sfXChainBridge, soeREQUIRED},
+
451 
+
452  {sfAttestationSignerAccount, soeREQUIRED},
+
453  {sfPublicKey, soeREQUIRED},
+
454  {sfSignature, soeREQUIRED},
+
455  {sfOtherChainSource, soeREQUIRED},
+
456  {sfAmount, soeREQUIRED},
+
457  {sfAttestationRewardAccount, soeREQUIRED},
+
458  {sfWasLockingChainSend, soeREQUIRED},
+
459 
+
460  {sfXChainAccountCreateCount, soeREQUIRED},
+
461  {sfDestination, soeREQUIRED},
+
462  {sfSignatureReward, soeREQUIRED},
+
463  },
+
464  commonFields);
+
465 
+
466  add(jss::XChainAccountCreateCommit,
+
467  ttXCHAIN_ACCOUNT_CREATE_COMMIT,
+
468  {
+
469  {sfXChainBridge, soeREQUIRED},
+
470  {sfDestination, soeREQUIRED},
+
471  {sfAmount, soeREQUIRED},
+
472  {sfSignatureReward, soeREQUIRED},
+
473  },
+
474  commonFields);
+
475 }
+
476 
+
477 TxFormats const&
+
478 TxFormats::getInstance()
+
479 {
+
480  static TxFormats const instance;
+
481  return instance;
+
482 }
+
483 
+
484 } // 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
@@ -594,9 +580,11 @@ $(function() {
ripple::ttXCHAIN_CLAIM
@ ttXCHAIN_CLAIM
This transaction completes a crosschain transaction.
Definition: TxFormats.h:170
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::ttXCHAIN_CREATE_BRIDGE
@ ttXCHAIN_CREATE_BRIDGE
This transactions creates a sidechain.
Definition: TxFormats.h:185
+
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:198
ripple::ttAMM_DEPOSIT
@ ttAMM_DEPOSIT
This transaction type deposits into an AMM instance.
Definition: TxFormats.h:149
@@ -620,6 +608,7 @@ $(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
@@ -627,10 +616,11 @@ $(function() {
ripple::sfSettleDelay
const SF_UINT32 sfSettleDelay
ripple::sfSignatureReward
const SF_AMOUNT sfSignatureReward
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::ttXCHAIN_COMMIT
@ ttXCHAIN_COMMIT
This transactions initiates a crosschain transaction.
Definition: TxFormats.h:167
-
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:494
+
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:478
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
@@ -642,12 +632,14 @@ $(function() {
ripple::ttESCROW_CREATE
@ ttESCROW_CREATE
This transaction type creates an escrow object.
Definition: TxFormats.h:62
ripple::ttXCHAIN_MODIFY_BRIDGE
@ ttXCHAIN_MODIFY_BRIDGE
This transaction modifies a sidechain.
Definition: TxFormats.h:182
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::sfAttestationSignerAccount
const SF_ACCOUNT sfAttestationSignerAccount
+
ripple::sfPreviousTxnID
const SF_UINT256 sfPreviousTxnID
ripple::sfAuthorize
const SF_ACCOUNT sfAuthorize
ripple::ttXCHAIN_ACCOUNT_CREATE_COMMIT
@ ttXCHAIN_ACCOUNT_CREATE_COMMIT
This transaction initiates a crosschain account create transaction.
Definition: TxFormats.h:173
ripple::sfReserveIncrementDrops
const SF_AMOUNT sfReserveIncrementDrops
@@ -661,8 +653,10 @@ $(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::sfMinAccountCreateAmount
const SF_AMOUNT sfMinAccountCreateAmount
ripple
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: RCLCensorshipDetector.h:29
@@ -671,6 +665,7 @@ $(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::sfOtherChainDestination
const SF_ACCOUNT sfOtherChainDestination
ripple::ttCHECK_CASH
@ ttCHECK_CASH
This transaction type cashes an existing check.
Definition: TxFormats.h:110
@@ -687,9 +682,13 @@ $(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::sfAttestationRewardAccount
const SF_ACCOUNT sfAttestationRewardAccount
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::sfXChainBridge
const SF_XCHAIN_BRIDGE sfXChainBridge
ripple::sfFulfillment
const SF_VL sfFulfillment
diff --git a/TxFormats_8h_source.html b/TxFormats_8h_source.html index 6ba6216736..195dafdaeb 100644 --- a/TxFormats_8h_source.html +++ b/TxFormats_8h_source.html @@ -232,7 +232,7 @@ $(function() {
ripple::ttUNL_MODIFY
@ ttUNL_MODIFY
This system-generated transaction type is used to update the network's negative UNL.
Definition: TxFormats.h:204
ripple::ttCHECK_CREATE
@ ttCHECK_CREATE
This transaction type creates a new check.
Definition: TxFormats.h:107
ripple::ttXCHAIN_COMMIT
@ ttXCHAIN_COMMIT
This transactions initiates a crosschain transaction.
Definition: TxFormats.h:167
-
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:494
+
ripple::TxFormats::getInstance
static TxFormats const & getInstance()
Definition: TxFormats.cpp:478
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 46158fbff1..74ed209cb3 100644 --- a/classripple_1_1TxFormats.html +++ b/classripple_1_1TxFormats.html @@ -209,7 +209,7 @@ Private Attributes
-

Definition at line 494 of file TxFormats.cpp.

+

Definition at line 478 of file TxFormats.cpp.

diff --git a/namespacemembers_f.html b/namespacemembers_f.html index ec569ff206..d019f8e5e8 100644 --- a/namespacemembers_f.html +++ b/namespacemembers_f.html @@ -453,11 +453,14 @@ $(function() { : ripple
  • fund() -: ripple::test::jtx +: ripple::test::jtx
  • Fund : ripple::test::jtx
  • +
  • fund() +: ripple::test::jtx +
  • diff --git a/namespacemembers_t.html b/namespacemembers_t.html index f2eb33217e..c3a424a289 100644 --- a/namespacemembers_t.html +++ b/namespacemembers_t.html @@ -1028,12 +1028,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 50781f52b9..d83962cce1 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -526,7 +526,7 @@ var searchData= ['propagatenosquelch_7929',['propagateNoSquelch',['../classripple_1_1test_1_1reduce__relay__test.html#a3a74c7472a14e78e6e23b9e83560344e',1,'ripple::test::reduce_relay_test']]], ['propertystream_7930',['PropertyStream',['../classbeast_1_1PropertyStream.html',1,'beast::PropertyStream'],['../classbeast_1_1PropertyStream.html#a5a30f51c3aecb5b1fe993e773a930c5c',1,'beast::PropertyStream::PropertyStream()']]], ['propertystream_5ftest_7931',['PropertyStream_test',['../classbeast_1_1PropertyStream__test.html',1,'beast']]], - ['proposal_7932',['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#abd97b534644867746e414c2ea73edd3d',1,'ripple::RCLCxPeerPos::Proposal()'],['../namespaceripple.html#ad5143ceada01141772ae4aab984f94bdab314439bc1697845de3749d51dca7c15',1,'ripple::proposal()'],['../namespaceripple_1_1test_1_1csf.html#aa28290938888ccb2f8a78b0efc23b7c1',1,'ripple::test::csf::Proposal()']]], + ['proposal_7932',['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#abd97b534644867746e414c2ea73edd3d',1,'ripple::RCLCxPeerPos::Proposal()'],['../namespaceripple_1_1test_1_1csf.html#aa28290938888ccb2f8a78b0efc23b7c1',1,'ripple::test::csf::Proposal()'],['../namespaceripple.html#ad5143ceada01141772ae4aab984f94bdab314439bc1697845de3749d51dca7c15',1,'ripple::proposal()']]], ['proposal_5f_7933',['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_7934',['Proposal_t',['../classripple_1_1Consensus.html#af5bd2845bc56bd54e10b21c25bad7c9f',1,'ripple::Consensus::Proposal_t()'],['../structripple_1_1ConsensusResult.html#a8a6d1227ecbc6afb5b2e240ec099ce5c',1,'ripple::ConsensusResult::Proposal_t()']]], ['proposaluniqueid_7935',['proposalUniqueId',['../namespaceripple.html#a0f5de38ef7c5157e23527a0e6a720a22',1,'ripple']]], diff --git a/search/all_12.js b/search/all_12.js index 46dad69d7b..ea655e0a04 100644 --- a/search/all_12.js +++ b/search/all_12.js @@ -48,7 +48,7 @@ var searchData= ['rand_5fint_8123',['rand_int',['../namespaceripple.html#a71a6227fec78db0b06595d62c06b25dc',1,'ripple::rand_int(Engine &engine, Integral min, Integral max)'],['../namespaceripple.html#aa5fb5ef9fc6555a627bdbde17a59cd2a',1,'ripple::rand_int(Integral min, Integral max)'],['../namespaceripple.html#ad6b8a6e25e2640e9f1323ba7ef907753',1,'ripple::rand_int(Engine &engine, Integral max)'],['../namespaceripple.html#a89a958ee44d4968d8a302b666f035dee',1,'ripple::rand_int(Integral max)'],['../namespaceripple.html#a864072ee03b60d93515463c1d61ac87f',1,'ripple::rand_int(Engine &engine)'],['../namespaceripple.html#a789891ca96899d7d6e82ae9b5fdf7dea',1,'ripple::rand_int()']]], ['randadvance_8124',['randAdvance',['../classripple_1_1test_1_1ManualClock.html#acc0ef5972061d4fc428102cf1f1315cc',1,'ripple::test::ManualClock']]], ['randduration_8125',['randDuration',['../classripple_1_1test_1_1ManualClock.html#a65772aaa64f10eef84afc4753d5cc9b4',1,'ripple::test::ManualClock']]], - ['randint_8126',['randint',['http://en.cppreference.com/w/cpp/experimental/randint.html',1,'std::experimental::randint()'],['../namespaceripple_1_1NodeStore.html#a620487a694d336d3baebdf2ea35a9dab',1,'ripple::NodeStore::randInt(Engine &engine, Integral min, Integral max)'],['../namespaceripple_1_1NodeStore.html#abe2cc227d9e114f7ca28f29550c73652',1,'ripple::NodeStore::randInt(Engine &engine, Integral max)']]], + ['randint_8126',['randInt',['../namespaceripple_1_1NodeStore.html#a620487a694d336d3baebdf2ea35a9dab',1,'ripple::NodeStore::randInt(Engine &engine, Integral min, Integral max)'],['../namespaceripple_1_1NodeStore.html#abe2cc227d9e114f7ca28f29550c73652',1,'ripple::NodeStore::randInt(Engine &engine, Integral max)'],['http://en.cppreference.com/w/cpp/experimental/randint.html',1,'std::experimental::randint()']]], ['random_8127',['random',['http://en.cppreference.com/w/cpp/header/random.html',1,'(Global Namespace)'],['../classripple_1_1test_1_1reduce__relay__test.html#a1e4ca44be9c15127eb6b758d51300116',1,'ripple::test::reduce_relay_test::random()']]], ['random_5faccess_5fiterator_5ftag_8128',['random_access_iterator_tag',['http://en.cppreference.com/w/cpp/iterator/iterator_tags.html',1,'std']]], ['random_5fdevice_8129',['random_device',['http://en.cppreference.com/w/cpp/numeric/random/random_device.html',1,'std::random_device'],['http://en.cppreference.com/w/cpp/numeric/random/random_device/random_device.html',1,'std::random_device::random_device()']]], diff --git a/search/all_13.js b/search/all_13.js index 46bcd6f64f..0d50147906 100644 --- a/search/all_13.js +++ b/search/all_13.js @@ -1244,7 +1244,7 @@ var searchData= ['statsdhookimpl_10004',['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_10005',['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_10006',['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_10007',['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_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()'],['../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)'],['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_10007',['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_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()'],['../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)'],['../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_10008',['status_',['../classripple_1_1AsyncCallData.html#acc88eeb725ce1c0b90aa51301017498b',1,'ripple::AsyncCallData']]], ['status_5fknown_10009',['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_10010',['statusRequestResponse',['../namespaceripple.html#ac597446213f304f13375429394c69909',1,'ripple']]], diff --git a/search/all_14.js b/search/all_14.js index e3953bf8e2..5307f403c7 100644 --- a/search/all_14.js +++ b/search/all_14.js @@ -1613,7 +1613,7 @@ var searchData= ['trustedvalidations_11934',['trustedValidations',['../classripple_1_1AmendmentSet.html#a6d6b63ea4b09a0b012667c79aff07528',1,'ripple::AmendmentSet']]], ['trustedvalidations_5f_11935',['trustedValidations_',['../classripple_1_1AmendmentSet.html#a08f7a2888e1f8767713d045a114975c9',1,'ripple::AmendmentSet']]], ['trustedvotes_11936',['TrustedVotes',['../classripple_1_1TrustedVotes.html',1,'ripple::TrustedVotes'],['../classripple_1_1TrustedVotes.html#a3d752f8a8137c54441bd754db241b286',1,'ripple::TrustedVotes::TrustedVotes()=default'],['../classripple_1_1TrustedVotes.html#abe5928a3f6fa4cf32bc180a88978e4bf',1,'ripple::TrustedVotes::TrustedVotes(TrustedVotes const &rhs)=delete']]], - ['trustflag_11937',['TrustFlag',['../namespaceripple_1_1test.html#acf39cc44acdd6b5089f2076897fa3911',1,'ripple::test::TrustFlag()'],['../namespaceripple_1_1test.html#a6879dc19e056b84550387698c4c38ec4',1,'ripple::test::trustFlag(TrustFlag f, bool useHigh)']]], + ['trustflag_11937',['trustFlag',['../namespaceripple_1_1test.html#a6879dc19e056b84550387698c4c38ec4',1,'ripple::test::trustFlag(TrustFlag f, bool useHigh)'],['../namespaceripple_1_1test.html#acf39cc44acdd6b5089f2076897fa3911',1,'ripple::test::TrustFlag()']]], ['trustgraph_11938',['TrustGraph',['../classripple_1_1test_1_1csf_1_1TrustGraph.html',1,'ripple::test::csf::TrustGraph< Peer >'],['../classripple_1_1test_1_1csf_1_1TrustGraph.html#ad71fd7d9762e7c9b25ef2f27514afd9f',1,'ripple::test::csf::TrustGraph::TrustGraph()'],['../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()']]], ['trustgraph_3c_20ripple_3a_3atest_3a_3acsf_3a_3apeer_20_2a_20_3e_11939',['TrustGraph< ripple::test::csf::Peer * >',['../classripple_1_1test_1_1csf_1_1TrustGraph.html',1,'ripple::test::csf']]], ['trustlinebase_11940',['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_6.js b/search/all_6.js index 5822acee32..b17eb6209e 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -448,7 +448,7 @@ var searchData= ['fstream_3284',['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_3285',['ftell',['http://en.cppreference.com/w/cpp/io/c/ftell.html',1,'std']]], ['fulfillment_3286',['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_3287',['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_3287',['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_3288',['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_3289',['full_duration',['../structripple_1_1NetworkOPsImp_1_1Stats.html#aac32f80938d2314139b4c42fe1ce2ebe',1,'ripple::NetworkOPsImp::Stats']]], ['full_5freply_5f_3290',['full_reply_',['../classripple_1_1PathRequest.html#ab324991f586a3dd494a3c874b7b193b2',1,'ripple::PathRequest']]], @@ -486,7 +486,7 @@ var searchData= ['function_3c_20void_28void_29_3e_3322',['function< void(void)>',['http://en.cppreference.com/w/cpp/utility/functional/function.html',1,'std']]], ['functional_3323',['functional',['http://en.cppreference.com/w/cpp/header/functional.html',1,'']]], ['functionqueue_3324',['FunctionQueue',['../classripple_1_1PeerFinder_1_1Sim_1_1FunctionQueue.html',1,'ripple::PeerFinder::Sim::FunctionQueue'],['../classripple_1_1PeerFinder_1_1Sim_1_1FunctionQueue.html#a1083f4f7f04942d5cb79fc6c3e9bd3b4',1,'ripple::PeerFinder::Sim::FunctionQueue::FunctionQueue()']]], - ['fund_3325',['fund',['../structripple_1_1test_1_1SEnv.html#ae046965de2fe0a3c315ac492f30ce981',1,'ripple::test::SEnv::fund()'],['../classripple_1_1test_1_1jtx_1_1Env.html#ae2349266cb09d1f1c3de06606ebdf9e2',1,'ripple::test::jtx::Env::fund(bool setDefaultRipple, STAmount const &amount, Account const &account)'],['../classripple_1_1test_1_1jtx_1_1Env.html#a9264df26c2f14a094de53a21055cdb1c',1,'ripple::test::jtx::Env::fund(STAmount const &amount, Arg const &arg, Args const &... args)'],['../classripple_1_1RPC_1_1AccountLinesRPC__test.html#aa944b535c06b8336535ee83f6aca21a0',1,'ripple::RPC::AccountLinesRPC_test::fund(XRP(10000), alice)'],['../classripple_1_1RPC_1_1AccountLinesRPC__test.html#a3c524d3990becc6a4a50ad02a1ea5a37',1,'ripple::RPC::AccountLinesRPC_test::fund(XRP(10000), gw1)'],['../classripple_1_1RPC_1_1AccountLinesRPC__test.html#aef1161796a52fd32c445ac09dda467eb',1,'ripple::RPC::AccountLinesRPC_test::fund(XRP(10000), gw2)'],['../namespaceripple_1_1test_1_1jtx.html#aff98aceb75526246bab03273ec360fb6',1,'ripple::test::jtx::Fund()'],['../namespaceripple_1_1test_1_1jtx.html#a7465bcfa8bde2f58f93cee57934f7df8',1,'ripple::test::jtx::fund(jtx::Env &env, jtx::Account const &gw, std::vector< jtx::Account > const &accounts, std::vector< STAmount > const &amts, Fund how)'],['../namespaceripple_1_1test_1_1jtx.html#a97d903cc3d66d2e1a292d1cb3121644f',1,'ripple::test::jtx::fund(jtx::Env &env, jtx::Account const &gw, std::vector< jtx::Account > const &accounts, STAmount const &xrp, std::vector< STAmount > const &amts={}, Fund how=Fund::All)'],['../namespaceripple_1_1test_1_1jtx.html#a5699279c9df70c69fd8c99caec2761c1',1,'ripple::test::jtx::fund(jtx::Env &env, std::vector< jtx::Account > const &accounts, STAmount const &xrp, std::vector< STAmount > const &amts={}, Fund how=Fund::All)'],['../namespaceripple_1_1test_1_1jtx.html#ab9de6b2094cdadd1431558294cb73851',1,'ripple::test::jtx::fund(AccountID const &account, uint256 const &channel, STAmount const &amount, std::optional< NetClock::time_point > const &expiration)']]], + ['fund_3325',['fund',['../structripple_1_1test_1_1SEnv.html#ae046965de2fe0a3c315ac492f30ce981',1,'ripple::test::SEnv::fund()'],['../classripple_1_1test_1_1jtx_1_1Env.html#ae2349266cb09d1f1c3de06606ebdf9e2',1,'ripple::test::jtx::Env::fund(bool setDefaultRipple, STAmount const &amount, Account const &account)'],['../classripple_1_1test_1_1jtx_1_1Env.html#a9264df26c2f14a094de53a21055cdb1c',1,'ripple::test::jtx::Env::fund(STAmount const &amount, Arg const &arg, Args const &... args)'],['../classripple_1_1RPC_1_1AccountLinesRPC__test.html#aa944b535c06b8336535ee83f6aca21a0',1,'ripple::RPC::AccountLinesRPC_test::fund(XRP(10000), alice)'],['../classripple_1_1RPC_1_1AccountLinesRPC__test.html#a3c524d3990becc6a4a50ad02a1ea5a37',1,'ripple::RPC::AccountLinesRPC_test::fund(XRP(10000), gw1)'],['../classripple_1_1RPC_1_1AccountLinesRPC__test.html#aef1161796a52fd32c445ac09dda467eb',1,'ripple::RPC::AccountLinesRPC_test::fund(XRP(10000), gw2)'],['../namespaceripple_1_1test_1_1jtx.html#a7465bcfa8bde2f58f93cee57934f7df8',1,'ripple::test::jtx::fund(jtx::Env &env, jtx::Account const &gw, std::vector< jtx::Account > const &accounts, std::vector< STAmount > const &amts, Fund how)'],['../namespaceripple_1_1test_1_1jtx.html#a97d903cc3d66d2e1a292d1cb3121644f',1,'ripple::test::jtx::fund(jtx::Env &env, jtx::Account const &gw, std::vector< jtx::Account > const &accounts, STAmount const &xrp, std::vector< STAmount > const &amts={}, Fund how=Fund::All)'],['../namespaceripple_1_1test_1_1jtx.html#a5699279c9df70c69fd8c99caec2761c1',1,'ripple::test::jtx::fund(jtx::Env &env, std::vector< jtx::Account > const &accounts, STAmount const &xrp, std::vector< STAmount > const &amts={}, Fund how=Fund::All)'],['../namespaceripple_1_1test_1_1jtx.html#ab9de6b2094cdadd1431558294cb73851',1,'ripple::test::jtx::fund(AccountID const &account, uint256 const &channel, STAmount const &amount, std::optional< NetClock::time_point > const &expiration)'],['../namespaceripple_1_1test_1_1jtx.html#aff98aceb75526246bab03273ec360fb6',1,'ripple::test::jtx::Fund()']]], ['fund_5farg_3326',['fund_arg',['../classripple_1_1test_1_1jtx_1_1Env.html#afa7324d98ed5b298e853f7c170c06ea6',1,'ripple::test::jtx::Env::fund_arg(STAmount const &amount, Account const &account)'],['../classripple_1_1test_1_1jtx_1_1Env.html#a01d32419e46d88ebc1a6325ca56e2902',1,'ripple::test::jtx::Env::fund_arg(STAmount const &amount, std::array< Account, N > const &list)']]], ['funds_5f_3327',['funds_',['../classripple_1_1Taker__test_1_1TestTaker.html#ac903b7f1ea6fb73138e1ea548bec5dcd',1,'ripple::Taker_test::TestTaker']]], ['future_3328',['future',['http://en.cppreference.com/w/cpp/thread/future.html',1,'std::future'],['http://en.cppreference.com/w/cpp/header/future.html',1,'(Global Namespace)'],['http://en.cppreference.com/w/cpp/thread/future/future.html',1,'std::future::future()']]], diff --git a/search/all_9.js b/search/all_9.js index c270295a23..7bc927f29c 100644 --- a/search/all_9.js +++ b/search/all_9.js @@ -234,7 +234,7 @@ var searchData= ['intvalue_4447',['intValue',['../namespaceJson.html#a7d654b75c16a57007925868e38212b4eae5a9d708d5c9e23ae9bf98898522512d',1,'Json']]], ['inv_4448',['inv',['../structripple_1_1test_1_1csf_1_1Rate.html#a813514d57dda3612d5105a28d697f7eb',1,'ripple::test::csf::Rate']]], ['inv_5f_4449',['inv_',['../classripple_1_1test_1_1csf_1_1PowerLawDistribution.html#abdc9f98b1ab069b7ce1cb0a10be9a3b3',1,'ripple::test::csf::PowerLawDistribution']]], - ['invalid_4450',['invalid',['../classripple_1_1SHAMapAddNode.html#ac8b13f949d0715320fec511a17e48b2e',1,'ripple::SHAMapAddNode::invalid()'],['../namespaceripple.html#a2e97c395a5e1ef4ed1052299e0e60843af8c5e3e10d98fcbda2c4d43d50d712a2',1,'ripple::INVALID()'],['../namespaceripple.html#a49003667116eb98c6e966f36e5dd1c77a4bbb8f967da6d1a610596d7257179c2b',1,'ripple::Invalid()'],['../namespaceripple.html#a8a16d6f665a032453ec4cbfca01929b6afedb2d84cafe20862cb4399751a8a7e3',1,'ripple::invalid()'],['../namespaceripple.html#a6eaff79c38106bc3b27326d878c902d3afedb2d84cafe20862cb4399751a8a7e3',1,'ripple::invalid()']]], + ['invalid_4450',['invalid',['../classripple_1_1SHAMapAddNode.html#ac8b13f949d0715320fec511a17e48b2e',1,'ripple::SHAMapAddNode::invalid()'],['../namespaceripple.html#a2e97c395a5e1ef4ed1052299e0e60843af8c5e3e10d98fcbda2c4d43d50d712a2',1,'ripple::INVALID()'],['../namespaceripple.html#a8a16d6f665a032453ec4cbfca01929b6afedb2d84cafe20862cb4399751a8a7e3',1,'ripple::invalid()'],['../namespaceripple.html#a6eaff79c38106bc3b27326d878c902d3afedb2d84cafe20862cb4399751a8a7e3',1,'ripple::invalid()'],['../namespaceripple.html#a49003667116eb98c6e966f36e5dd1c77a4bbb8f967da6d1a610596d7257179c2b',1,'ripple::Invalid()']]], ['invalid_5fargument_4451',['invalid_argument',['http://en.cppreference.com/w/cpp/error/invalid_argument.html',1,'std::invalid_argument'],['http://en.cppreference.com/w/cpp/error/invalid_argument.html',1,'std::invalid_argument::invalid_argument()']]], ['invalid_5fdata_4452',['invalid_data',['../namespaceripple_1_1STParsedJSONDetail.html#a9c5f5f83378546d25848c2dd4f791795',1,'ripple::STParsedJSONDetail::invalid_data(std::string const &object, std::string const &field)'],['../namespaceripple_1_1STParsedJSONDetail.html#a3984d14cfc00e6121dde106c67f37549',1,'ripple::STParsedJSONDetail::invalid_data(std::string const &object)']]], ['invalid_5ffield_5ferror_4453',['invalid_field_error',['../namespaceripple_1_1RPC.html#a3f2a31e585bbecb3af3740d34d7df15f',1,'ripple::RPC::invalid_field_error(std::string const &name)'],['../namespaceripple_1_1RPC.html#af10bc439258bba422e8f6f1860c89192',1,'ripple::RPC::invalid_field_error(Json::StaticString name)']]], diff --git a/search/all_f.js b/search/all_f.js index eac8df7492..34b6eed19a 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -12,7 +12,7 @@ var searchData= ['objectvalues_7059',['ObjectValues',['../classJson_1_1Value.html#ae2e1660b018d7fd8870fa51102c3c0b5',1,'Json::Value']]], ['observer_5fptr_7060',['observer_ptr',['http://en.cppreference.com/w/cpp/experimental/observer_ptr.html',1,'std::experimental']]], ['observing_7061',['observing',['../namespaceripple.html#a33f8b6e68b5f63faf2e9755cc251563eaea5234685f43dcab142e132c0e7be2ce',1,'ripple']]], - ['obsolete_7062',['OBSOLETE',['../namespaceripple.html#a2e97c395a5e1ef4ed1052299e0e60843ad8d4ab290d0006e2cbe215ff1b11e5ea',1,'ripple::OBSOLETE()'],['../namespaceripple.html#a1dcb4cf27e683bd94d11f5322836c689a28a39c5d0e09f2b9f423c9864ecf1db8',1,'ripple::obsolete()'],['../namespaceripple.html#aa5778f9faa15e3677dcda7975d9db7c6aec30c235d0eb792797af1aa1d11759a7',1,'ripple::Obsolete()']]], + ['obsolete_7062',['OBSOLETE',['../namespaceripple.html#a2e97c395a5e1ef4ed1052299e0e60843ad8d4ab290d0006e2cbe215ff1b11e5ea',1,'ripple::OBSOLETE()'],['../namespaceripple.html#aa5778f9faa15e3677dcda7975d9db7c6aec30c235d0eb792797af1aa1d11759a7',1,'ripple::Obsolete()'],['../namespaceripple.html#a1dcb4cf27e683bd94d11f5322836c689a28a39c5d0e09f2b9f423c9864ecf1db8',1,'ripple::obsolete()']]], ['obsolete_5f_7063',['obsolete_',['../classripple_1_1AmendmentTable__test.html#ac2dd191e7ab36fc50c090503d5581fed',1,'ripple::AmendmentTable_test']]], ['oct_7064',['oct',['http://en.cppreference.com/w/cpp/io/manip/hex.html',1,'std']]], ['off_7065',['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()']]], diff --git a/search/enumvalues_5.js b/search/enumvalues_5.js index 897d96d48a..4f9e18d282 100644 --- a/search/enumvalues_5.js +++ b/search/enumvalues_5.js @@ -16,6 +16,6 @@ var searchData= ['free_27863',['FREE',['../namespaceripple.html#a5d9fe757c37a7602a883d30b14e1bf3ca88c189a42c87aa49d667fc8ab76bc323',1,'ripple']]], ['freeze_27864',['freeze',['../namespaceripple_1_1test.html#acf39cc44acdd6b5089f2076897fa3911aeb479605271a1f0ffff9d87f2cab0b75',1,'ripple::test']]], ['fresh_27865',['FRESH',['../classripple_1_1Config.html#a6d275f46c1bb19d9a85917de5ca1b99ea0e7baa77ef581ef9dc61862d39238fe8',1,'ripple::Config']]], - ['full_27866',['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_27866',['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_27867',['fullyCanonical',['../namespaceripple.html#a286745fec5429abb3893001b4982522ba3e23eeda3fe3fb70d1e274eab59199d1',1,'ripple']]] ]; diff --git a/search/enumvalues_8.js b/search/enumvalues_8.js index 4241c2325b..875f65cee3 100644 --- a/search/enumvalues_8.js +++ b/search/enumvalues_8.js @@ -11,7 +11,7 @@ var searchData= ['innernode_27910',['innerNode',['../namespaceripple.html#ad5143ceada01141772ae4aab984f94bdad9a09590da318a86ba2bd64b374c2d77',1,'ripple']]], ['insert_27911',['insert',['../classripple_1_1detail_1_1ApplyStateTable.html#a958ac2550ee88b655217f6f1f51c6222ae0df5f3dfd2650ae5be9993434e2b2c0',1,'ripple::detail::ApplyStateTable::insert()'],['../classripple_1_1detail_1_1RawStateTable.html#a8633f1d3c862430e0e3d8507f1f604f2ae0df5f3dfd2650ae5be9993434e2b2c0',1,'ripple::detail::RawStateTable::insert()']]], ['intvalue_27912',['intValue',['../namespaceJson.html#a7d654b75c16a57007925868e38212b4eae5a9d708d5c9e23ae9bf98898522512d',1,'Json']]], - ['invalid_27913',['INVALID',['../namespaceripple.html#a2e97c395a5e1ef4ed1052299e0e60843af8c5e3e10d98fcbda2c4d43d50d712a2',1,'ripple::INVALID()'],['../namespaceripple.html#a49003667116eb98c6e966f36e5dd1c77a4bbb8f967da6d1a610596d7257179c2b',1,'ripple::Invalid()'],['../namespaceripple.html#a8a16d6f665a032453ec4cbfca01929b6afedb2d84cafe20862cb4399751a8a7e3',1,'ripple::invalid()'],['../namespaceripple.html#a6eaff79c38106bc3b27326d878c902d3afedb2d84cafe20862cb4399751a8a7e3',1,'ripple::invalid()']]], + ['invalid_27913',['INVALID',['../namespaceripple.html#a2e97c395a5e1ef4ed1052299e0e60843af8c5e3e10d98fcbda2c4d43d50d712a2',1,'ripple::INVALID()'],['../namespaceripple.html#a8a16d6f665a032453ec4cbfca01929b6afedb2d84cafe20862cb4399751a8a7e3',1,'ripple::invalid()'],['../namespaceripple.html#a6eaff79c38106bc3b27326d878c902d3afedb2d84cafe20862cb4399751a8a7e3',1,'ripple::invalid()'],['../namespaceripple.html#a49003667116eb98c6e966f36e5dd1c77a4bbb8f967da6d1a610596d7257179c2b',1,'ripple::Invalid()']]], ['iouonly_27914',['IOUOnly',['../namespaceripple_1_1test_1_1jtx.html#aff98aceb75526246bab03273ec360fb6aae908268dcfdb25d40efca91954953c9',1,'ripple::test::jtx']]], ['ioutoiou_27915',['IouToIou',['../namespaceripple.html#ae9b6ac4bca5f49e1aa2753e0d9faa2a1aa1208156363280ec3589296c38553e82',1,'ripple']]], ['ioutoxrp_27916',['IouToXrp',['../namespaceripple.html#ae9b6ac4bca5f49e1aa2753e0d9faa2a1accb98a576f83dae3d3c01ecffcb2e38e',1,'ripple']]], diff --git a/search/enumvalues_e.js b/search/enumvalues_e.js index 8f014a3bab..abcfb84274 100644 --- a/search/enumvalues_e.js +++ b/search/enumvalues_e.js @@ -3,7 +3,7 @@ var searchData= ['object_28130',['object',['../classJson_1_1Writer.html#a53ecc840ddaba276dc429fd953d41ae0a8231fd5114a8727a3b32ae0094319e1a',1,'Json::Writer']]], ['objectvalue_28131',['objectValue',['../namespaceJson.html#a7d654b75c16a57007925868e38212b4eae8386dcfc36d1ae897745f7b4f77a1f6',1,'Json']]], ['observing_28132',['observing',['../namespaceripple.html#a33f8b6e68b5f63faf2e9755cc251563eaea5234685f43dcab142e132c0e7be2ce',1,'ripple']]], - ['obsolete_28133',['OBSOLETE',['../namespaceripple.html#a2e97c395a5e1ef4ed1052299e0e60843ad8d4ab290d0006e2cbe215ff1b11e5ea',1,'ripple::OBSOLETE()'],['../namespaceripple.html#a1dcb4cf27e683bd94d11f5322836c689a28a39c5d0e09f2b9f423c9864ecf1db8',1,'ripple::obsolete()'],['../namespaceripple.html#aa5778f9faa15e3677dcda7975d9db7c6aec30c235d0eb792797af1aa1d11759a7',1,'ripple::Obsolete()']]], + ['obsolete_28133',['OBSOLETE',['../namespaceripple.html#a2e97c395a5e1ef4ed1052299e0e60843ad8d4ab290d0006e2cbe215ff1b11e5ea',1,'ripple::OBSOLETE()'],['../namespaceripple.html#aa5778f9faa15e3677dcda7975d9db7c6aec30c235d0eb792797af1aa1d11759a7',1,'ripple::Obsolete()'],['../namespaceripple.html#a1dcb4cf27e683bd94d11f5322836c689a28a39c5d0e09f2b9f423c9864ecf1db8',1,'ripple::obsolete()']]], ['off_28134',['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_28135',['OFFER',['../namespaceripple.html#a22768e0a41b646442c98d38f2f2a307ba10a5fc93fb200eb05fc816628f0b1d32',1,'ripple']]], ['ok_28136',['ok',['../namespaceripple_1_1NodeStore.html#af127c2e4fc73b5d35647147ef45b350ca852178e08b8b1f2eb19fd271e63830ef',1,'ripple::NodeStore::ok()'],['../namespaceripple_1_1Resource.html#ae12997de115c1cf0032794aa5ea1b15daadeb01a5ff7ccf891ad10c735db17661',1,'ripple::Resource::ok()']]], diff --git a/search/functions_12.js b/search/functions_12.js index fa7d3b7f1b..0bdf77cbb2 100644 --- a/search/functions_12.js +++ b/search/functions_12.js @@ -8,7 +8,7 @@ var searchData= ['rand_5fint_20819',['rand_int',['../namespaceripple.html#a71a6227fec78db0b06595d62c06b25dc',1,'ripple::rand_int(Engine &engine, Integral min, Integral max)'],['../namespaceripple.html#aa5fb5ef9fc6555a627bdbde17a59cd2a',1,'ripple::rand_int(Integral min, Integral max)'],['../namespaceripple.html#ad6b8a6e25e2640e9f1323ba7ef907753',1,'ripple::rand_int(Engine &engine, Integral max)'],['../namespaceripple.html#a89a958ee44d4968d8a302b666f035dee',1,'ripple::rand_int(Integral max)'],['../namespaceripple.html#a864072ee03b60d93515463c1d61ac87f',1,'ripple::rand_int(Engine &engine)'],['../namespaceripple.html#a789891ca96899d7d6e82ae9b5fdf7dea',1,'ripple::rand_int()']]], ['randadvance_20820',['randAdvance',['../classripple_1_1test_1_1ManualClock.html#acc0ef5972061d4fc428102cf1f1315cc',1,'ripple::test::ManualClock']]], ['randduration_20821',['randDuration',['../classripple_1_1test_1_1ManualClock.html#a65772aaa64f10eef84afc4753d5cc9b4',1,'ripple::test::ManualClock']]], - ['randint_20822',['randint',['http://en.cppreference.com/w/cpp/experimental/randint.html',1,'std::experimental::randint()'],['../namespaceripple_1_1NodeStore.html#a620487a694d336d3baebdf2ea35a9dab',1,'ripple::NodeStore::randInt(Engine &engine, Integral min, Integral max)'],['../namespaceripple_1_1NodeStore.html#abe2cc227d9e114f7ca28f29550c73652',1,'ripple::NodeStore::randInt(Engine &engine, Integral max)']]], + ['randint_20822',['randInt',['../namespaceripple_1_1NodeStore.html#a620487a694d336d3baebdf2ea35a9dab',1,'ripple::NodeStore::randInt(Engine &engine, Integral min, Integral max)'],['../namespaceripple_1_1NodeStore.html#abe2cc227d9e114f7ca28f29550c73652',1,'ripple::NodeStore::randInt(Engine &engine, Integral max)'],['http://en.cppreference.com/w/cpp/experimental/randint.html',1,'std::experimental::randint()']]], ['random_20823',['random',['../classripple_1_1test_1_1reduce__relay__test.html#a1e4ca44be9c15127eb6b758d51300116',1,'ripple::test::reduce_relay_test']]], ['random_5fdevice_20824',['random_device',['http://en.cppreference.com/w/cpp/numeric/random/random_device/random_device.html',1,'std::random_device']]], ['random_5fshuffle_20825',['random_shuffle',['http://en.cppreference.com/w/cpp/algorithm/random_shuffle.html',1,'std']]],