From 45d7608635816258d7afb72c1a22ca5e0199fd96 Mon Sep 17 00:00:00 2001 From: intelliot Date: Fri, 15 Sep 2023 04:06:41 +0000 Subject: [PATCH] deploy: 237b406e8ca78cd92c2b7e4aa679bf759080ff13 --- XChainAttestations_8h_source.html | 156 ++++++++---------- XChainBridge_8cpp_source.html | 2 +- ...ple_1_1XChainAttestationsBase-members.html | 8 +- classripple_1_1XChainAttestationsBase.html | 60 +------ ...le_1_1XChainClaimAttestations-members.html | 10 +- classripple_1_1XChainClaimAttestations.html | 66 +------- ...hainCreateAccountAttestations-members.html | 10 +- ...le_1_1XChainCreateAccountAttestations.html | 66 +------- functions_func_m.html | 17 +- functions_func_v.html | 3 +- functions_m.html | 9 +- functions_v.html | 13 +- namespaceripple.html | 2 +- search/all_16.js | 2 +- search/all_d.js | 2 +- search/functions_16.js | 2 +- search/functions_d.js | 2 +- 17 files changed, 129 insertions(+), 301 deletions(-) diff --git a/XChainAttestations_8h_source.html b/XChainAttestations_8h_source.html index 00fa297f42..c9108d760f 100644 --- a/XChainAttestations_8h_source.html +++ b/XChainAttestations_8h_source.html @@ -508,85 +508,74 @@ $(function() {
437  template <class T>
438  void
439  emplace_back(T&& att);
-
440 
-
441  // verify that all the signatures attest to transaction data.
-
442  [[nodiscard]] bool
-
443  verify() const;
-
444 
-
445 protected:
-
446  // Return the message that was expected to be signed by the attesters given
-
447  // the data to be proved.
-
448  [[nodiscard]] std::vector<std::uint8_t>
-
449  message() const;
-
450 };
-
451 
-
452 template <class TAttestation>
-
453 [[nodiscard]] inline bool
-
454 operator==(
-
455  XChainAttestationsBase<TAttestation> const& lhs,
-
456  XChainAttestationsBase<TAttestation> const& rhs)
-
457 {
-
458  return lhs.attestations() == rhs.attestations();
-
459 }
-
460 
-
461 template <class TAttestation>
-
462 inline typename XChainAttestationsBase<TAttestation>::AttCollection const&
-
463 XChainAttestationsBase<TAttestation>::attestations() const
-
464 {
-
465  return attestations_;
-
466 };
-
467 
-
468 template <class TAttestation>
-
469 template <class T>
-
470 inline void
-
471 XChainAttestationsBase<TAttestation>::emplace_back(T&& att)
-
472 {
-
473  attestations_.emplace_back(std::forward<T>(att));
-
474 };
-
475 
-
476 template <class TAttestation>
-
477 template <class F>
-
478 inline std::size_t
-
479 XChainAttestationsBase<TAttestation>::erase_if(F&& f)
-
480 {
-
481  return std::erase_if(attestations_, std::forward<F>(f));
-
482 }
-
483 
-
484 template <class TAttestation>
-
485 inline std::size_t
-
486 XChainAttestationsBase<TAttestation>::size() const
-
487 {
-
488  return attestations_.size();
-
489 }
-
490 
-
491 template <class TAttestation>
-
492 inline bool
-
493 XChainAttestationsBase<TAttestation>::empty() const
-
494 {
-
495  return attestations_.empty();
-
496 }
-
497 
-
498 class XChainClaimAttestations final
-
499  : public XChainAttestationsBase<XChainClaimAttestation>
-
500 {
-
501  using TBase = XChainAttestationsBase<XChainClaimAttestation>;
-
502  using TBase::TBase;
-
503 };
-
504 
-
505 class XChainCreateAccountAttestations final
-
506  : public XChainAttestationsBase<XChainCreateAccountAttestation>
-
507 {
-
508  using TBase = XChainAttestationsBase<XChainCreateAccountAttestation>;
-
509  using TBase::TBase;
-
510 };
-
511 
-
512 } // namespace ripple
-
513 
-
514 #endif // STXCHAINATTESTATIONS_H_
+
440 };
+
441 
+
442 template <class TAttestation>
+
443 [[nodiscard]] inline bool
+
444 operator==(
+
445  XChainAttestationsBase<TAttestation> const& lhs,
+
446  XChainAttestationsBase<TAttestation> const& rhs)
+
447 {
+
448  return lhs.attestations() == rhs.attestations();
+
449 }
+
450 
+
451 template <class TAttestation>
+
452 inline typename XChainAttestationsBase<TAttestation>::AttCollection const&
+
453 XChainAttestationsBase<TAttestation>::attestations() const
+
454 {
+
455  return attestations_;
+
456 };
+
457 
+
458 template <class TAttestation>
+
459 template <class T>
+
460 inline void
+
461 XChainAttestationsBase<TAttestation>::emplace_back(T&& att)
+
462 {
+
463  attestations_.emplace_back(std::forward<T>(att));
+
464 };
+
465 
+
466 template <class TAttestation>
+
467 template <class F>
+
468 inline std::size_t
+
469 XChainAttestationsBase<TAttestation>::erase_if(F&& f)
+
470 {
+
471  return std::erase_if(attestations_, std::forward<F>(f));
+
472 }
+
473 
+
474 template <class TAttestation>
+
475 inline std::size_t
+
476 XChainAttestationsBase<TAttestation>::size() const
+
477 {
+
478  return attestations_.size();
+
479 }
+
480 
+
481 template <class TAttestation>
+
482 inline bool
+
483 XChainAttestationsBase<TAttestation>::empty() const
+
484 {
+
485  return attestations_.empty();
+
486 }
+
487 
+
488 class XChainClaimAttestations final
+
489  : public XChainAttestationsBase<XChainClaimAttestation>
+
490 {
+
491  using TBase = XChainAttestationsBase<XChainClaimAttestation>;
+
492  using TBase::TBase;
+
493 };
+
494 
+
495 class XChainCreateAccountAttestations final
+
496  : public XChainAttestationsBase<XChainCreateAccountAttestation>
+
497 {
+
498  using TBase = XChainAttestationsBase<XChainCreateAccountAttestation>;
+
499  using TBase::TBase;
+
500 };
+
501 
+
502 } // namespace ripple
+
503 
+
504 #endif // STXCHAINATTESTATIONS_H_
static constexpr std::uint32_t maxAttestations
AttestationBase(AccountID attestationSignerAccount_, PublicKey const &publicKey_, Buffer signature_, AccountID const &sendingAccount_, STAmount const &sendingAmount_, AccountID const &rewardAccount_, bool wasLockingChainSend_)
-
std::vector< std::uint8_t > message() const
friend bool operator==(AttestationCreateAccount const &lhs, AttestationCreateAccount const &rhs)
bool operator()(AttestationCreateAccount const &lhs, AttestationCreateAccount const &rhs) const
XChainCreateAccountAttestation(AccountID const &keyAccount_, PublicKey const &publicKey_, STAmount const &amount_, STAmount const &rewardAmount_, AccountID const &rewardAccount_, bool wasLockingChainSend_, AccountID const &dst_)
@@ -600,7 +589,7 @@ $(function() {
MatchFields(TSignedAttestation const &att)
AttestationMatch match(MatchFields const &rhs) const
-
bool empty() const
+
bool empty() const
void addHelper(STObject &o) const
PublicKey publicKey
@@ -636,10 +625,10 @@ $(function() {
virtual std::vector< std::uint8_t > message(STXChainBridge const &bridge) const =0
Definition: STArray.h:28
XChainAttestationsBase()=default
-
std::size_t erase_if(F &&f)
-
std::size_t size() const
+
std::size_t erase_if(F &&f)
+
std::size_t size() const
AccountID rewardAccount
-
void emplace_back(T &&att)
+
void emplace_back(T &&att)
Definition: STAmount.h:46
AccountID keyAccount
bool wasLockingChainSend
@@ -650,12 +639,11 @@ $(function() {
A secret key.
Definition: SecretKey.h:36
std::optional< AccountID > dst
static SField const & ArrayFieldName
-
+
bool wasLockingChainSend
std::uint64_t createCount
-
bool verify() const
bool wasLockingChainSend
PublicKey publicKey
@@ -689,7 +677,7 @@ $(function() {
AccountID dst
AccountID sendingAccount
AttCollection::const_iterator end() const
-
+
@ match
PublicKey publicKey
@@ -698,7 +686,7 @@ $(function() {
-
AttCollection const & attestations() const
+
AttCollection const & attestations() const
base_uint< 160, detail::AccountIDTag > AccountID
A 160-bit unsigned that uniquely identifies an account.
Definition: AccountID.h:49
STObject toSTObject() const
Represents a JSON value.
Definition: json_value.h:145
diff --git a/XChainBridge_8cpp_source.html b/XChainBridge_8cpp_source.html index cbc0380591..e45b1d175b 100644 --- a/XChainBridge_8cpp_source.html +++ b/XChainBridge_8cpp_source.html @@ -2384,7 +2384,7 @@ $(function() {
@ tecXCHAIN_CREATE_ACCOUNT_NONXRP_ISSUE
Definition: TER.h:319
void setIssue(Issue const &issue)
Set the Issue for this amount and update mIsNative.
Definition: STAmount.cpp:490
@ tecXCHAIN_BAD_TRANSFER_ISSUE
Definition: TER.h:314
-
+
const uint256 featureXChainBridge
virtual std::shared_ptr< SLE const > read(Keylet const &k) const =0
Return the state item associated with a key.
TER doApply() override
diff --git a/classripple_1_1XChainAttestationsBase-members.html b/classripple_1_1XChainAttestationsBase-members.html index 9caa7d11b4..b4b1d441b2 100644 --- a/classripple_1_1XChainAttestationsBase-members.html +++ b/classripple_1_1XChainAttestationsBase-members.html @@ -83,11 +83,9 @@ $(function() { end()ripple::XChainAttestationsBase< TAttestation > erase_if(F &&f)ripple::XChainAttestationsBase< TAttestation > maxAttestationsripple::XChainAttestationsBase< TAttestation >privatestatic - message() constripple::XChainAttestationsBase< TAttestation >protected - operator=(XChainAttestationsBase const &rhs)=defaultripple::XChainAttestationsBase< TAttestation > - size() constripple::XChainAttestationsBase< TAttestation > - toSTArray() constripple::XChainAttestationsBase< TAttestation > - verify() constripple::XChainAttestationsBase< TAttestation > + operator=(XChainAttestationsBase const &rhs)=defaultripple::XChainAttestationsBase< TAttestation > + size() constripple::XChainAttestationsBase< TAttestation > + toSTArray() constripple::XChainAttestationsBase< TAttestation > XChainAttestationsBase()=defaultripple::XChainAttestationsBase< TAttestation > XChainAttestationsBase(XChainAttestationsBase const &rhs)=defaultripple::XChainAttestationsBase< TAttestation > XChainAttestationsBase(AttCollection &&sigs)ripple::XChainAttestationsBase< TAttestation >explicit diff --git a/classripple_1_1XChainAttestationsBase.html b/classripple_1_1XChainAttestationsBase.html index a4e4a807b0..41b66ccc75 100644 --- a/classripple_1_1XChainAttestationsBase.html +++ b/classripple_1_1XChainAttestationsBase.html @@ -128,15 +128,11 @@ Public Member Functions template<class T > void emplace_back (T &&att)   -bool verify () const -  - -

Protected Member Functions

 ~XChainAttestationsBase ()=default
 
std::vector< std::uint8_tmessage () const
 
@@ -485,7 +481,7 @@ template<class F >

Private Attributes

-

Definition at line 479 of file XChainAttestations.h.

+

Definition at line 469 of file XChainAttestations.h.

@@ -503,7 +499,7 @@ template<class TAttestation >
-

Definition at line 486 of file XChainAttestations.h.

+

Definition at line 476 of file XChainAttestations.h.

@@ -521,7 +517,7 @@ template<class TAttestation >
-

Definition at line 493 of file XChainAttestations.h.

+

Definition at line 483 of file XChainAttestations.h.

@@ -539,7 +535,7 @@ template<class TAttestation >
-

Definition at line 463 of file XChainAttestations.h.

+

Definition at line 453 of file XChainAttestations.h.

@@ -563,53 +559,7 @@ template<class T >
-

Definition at line 471 of file XChainAttestations.h.

- -
- - -

◆ verify()

- -
-
-
-template<class TAttestation >
- - - - - - - -
bool ripple::XChainAttestationsBase< TAttestation >::verify () const
-
- -
-
- -

◆ message()

- -
-
-
-template<class TAttestation >
- - - - - -
- - - - - - - -
std::vector<std::uint8_t> ripple::XChainAttestationsBase< TAttestation >::message () const
-
-protected
-
+

Definition at line 461 of file XChainAttestations.h.

diff --git a/classripple_1_1XChainClaimAttestations-members.html b/classripple_1_1XChainClaimAttestations-members.html index a692c44a38..0c73ee36ab 100644 --- a/classripple_1_1XChainClaimAttestations-members.html +++ b/classripple_1_1XChainClaimAttestations-members.html @@ -83,12 +83,10 @@ $(function() { end()ripple::XChainAttestationsBase< XChainClaimAttestation > erase_if(F &&f)ripple::XChainAttestationsBase< XChainClaimAttestation > maxAttestationsripple::XChainAttestationsBase< XChainClaimAttestation >privatestatic - message() constripple::XChainAttestationsBase< XChainClaimAttestation >protected - operator=(XChainAttestationsBase const &rhs)=defaultripple::XChainAttestationsBase< XChainClaimAttestation > - size() constripple::XChainAttestationsBase< XChainClaimAttestation > - TBase typedefripple::XChainClaimAttestationsprivate - toSTArray() constripple::XChainAttestationsBase< XChainClaimAttestation > - verify() constripple::XChainAttestationsBase< XChainClaimAttestation > + operator=(XChainAttestationsBase const &rhs)=defaultripple::XChainAttestationsBase< XChainClaimAttestation > + size() constripple::XChainAttestationsBase< XChainClaimAttestation > + TBase typedefripple::XChainClaimAttestationsprivate + toSTArray() constripple::XChainAttestationsBase< XChainClaimAttestation > XChainAttestationsBase()=defaultripple::XChainAttestationsBase< XChainClaimAttestation > XChainAttestationsBase(XChainAttestationsBase const &rhs)=defaultripple::XChainAttestationsBase< XChainClaimAttestation > XChainAttestationsBase(AttCollection &&sigs)ripple::XChainAttestationsBase< XChainClaimAttestation >explicit diff --git a/classripple_1_1XChainClaimAttestations.html b/classripple_1_1XChainClaimAttestations.html index cb6014fbd6..dff5bf85a4 100644 --- a/classripple_1_1XChainClaimAttestations.html +++ b/classripple_1_1XChainClaimAttestations.html @@ -68,7 +68,6 @@ $(function() {
Public Types | Public Member Functions | -Protected Member Functions | Private Types | Private Attributes | Static Private Attributes | @@ -142,13 +141,6 @@ Public Member Functions   void emplace_back (T &&att)   -bool verify () const -  - - - -

-Protected Member Functions

std::vector< std::uint8_tmessage () const
 
@@ -167,7 +159,7 @@ Static Private Attributes

Private Types

Detailed Description

-

Definition at line 498 of file XChainAttestations.h.

+

Definition at line 488 of file XChainAttestations.h.

Member Typedef Documentation

◆ TBase

@@ -189,7 +181,7 @@ Static Private Attributes
-

Definition at line 501 of file XChainAttestations.h.

+

Definition at line 491 of file XChainAttestations.h.

@@ -358,7 +350,7 @@ Static Private Attributes
-

Definition at line 479 of file XChainAttestations.h.

+

Definition at line 469 of file XChainAttestations.h.

@@ -382,7 +374,7 @@ Static Private Attributes
-

Definition at line 486 of file XChainAttestations.h.

+

Definition at line 476 of file XChainAttestations.h.

@@ -406,7 +398,7 @@ Static Private Attributes
-

Definition at line 493 of file XChainAttestations.h.

+

Definition at line 483 of file XChainAttestations.h.

@@ -430,7 +422,7 @@ Static Private Attributes
-

Definition at line 463 of file XChainAttestations.h.

+

Definition at line 453 of file XChainAttestations.h.

@@ -458,51 +450,7 @@ Static Private Attributes
-

Definition at line 471 of file XChainAttestations.h.

- -
- - -

◆ verify()

- -
-
- - - - - -
- - - - -
bool ripple::XChainAttestationsBase< XChainClaimAttestation >::verify
-
-inherited
-
- -
-
- -

◆ message()

- -
-
- - - - - -
- - - - -
std::vector<std::uint8_t> ripple::XChainAttestationsBase< XChainClaimAttestation >::message
-
-protectedinherited
-
+

Definition at line 461 of file XChainAttestations.h.

diff --git a/classripple_1_1XChainCreateAccountAttestations-members.html b/classripple_1_1XChainCreateAccountAttestations-members.html index 90022d83bd..418f593f31 100644 --- a/classripple_1_1XChainCreateAccountAttestations-members.html +++ b/classripple_1_1XChainCreateAccountAttestations-members.html @@ -83,12 +83,10 @@ $(function() { end()ripple::XChainAttestationsBase< XChainCreateAccountAttestation > erase_if(F &&f)ripple::XChainAttestationsBase< XChainCreateAccountAttestation > maxAttestationsripple::XChainAttestationsBase< XChainCreateAccountAttestation >privatestatic - message() constripple::XChainAttestationsBase< XChainCreateAccountAttestation >protected - operator=(XChainAttestationsBase const &rhs)=defaultripple::XChainAttestationsBase< XChainCreateAccountAttestation > - size() constripple::XChainAttestationsBase< XChainCreateAccountAttestation > - TBase typedefripple::XChainCreateAccountAttestationsprivate - toSTArray() constripple::XChainAttestationsBase< XChainCreateAccountAttestation > - verify() constripple::XChainAttestationsBase< XChainCreateAccountAttestation > + operator=(XChainAttestationsBase const &rhs)=defaultripple::XChainAttestationsBase< XChainCreateAccountAttestation > + size() constripple::XChainAttestationsBase< XChainCreateAccountAttestation > + TBase typedefripple::XChainCreateAccountAttestationsprivate + toSTArray() constripple::XChainAttestationsBase< XChainCreateAccountAttestation > XChainAttestationsBase()=defaultripple::XChainAttestationsBase< XChainCreateAccountAttestation > XChainAttestationsBase(XChainAttestationsBase const &rhs)=defaultripple::XChainAttestationsBase< XChainCreateAccountAttestation > XChainAttestationsBase(AttCollection &&sigs)ripple::XChainAttestationsBase< XChainCreateAccountAttestation >explicit diff --git a/classripple_1_1XChainCreateAccountAttestations.html b/classripple_1_1XChainCreateAccountAttestations.html index 5d4d22ec40..674e5d864c 100644 --- a/classripple_1_1XChainCreateAccountAttestations.html +++ b/classripple_1_1XChainCreateAccountAttestations.html @@ -68,7 +68,6 @@ $(function() {
Public Types | Public Member Functions | -Protected Member Functions | Private Types | Private Attributes | Static Private Attributes | @@ -141,13 +140,6 @@ Public Member Functions   void emplace_back (T &&att)   -bool verify () const -  - - - -

-Protected Member Functions

std::vector< std::uint8_tmessage () const
 
@@ -166,7 +158,7 @@ Static Private Attributes

Private Types

Detailed Description

-

Definition at line 505 of file XChainAttestations.h.

+

Definition at line 495 of file XChainAttestations.h.

Member Typedef Documentation

◆ TBase

@@ -188,7 +180,7 @@ Static Private Attributes
-

Definition at line 508 of file XChainAttestations.h.

+

Definition at line 498 of file XChainAttestations.h.

@@ -357,7 +349,7 @@ Static Private Attributes
-

Definition at line 479 of file XChainAttestations.h.

+

Definition at line 469 of file XChainAttestations.h.

@@ -381,7 +373,7 @@ Static Private Attributes
-

Definition at line 486 of file XChainAttestations.h.

+

Definition at line 476 of file XChainAttestations.h.

@@ -405,7 +397,7 @@ Static Private Attributes
-

Definition at line 493 of file XChainAttestations.h.

+

Definition at line 483 of file XChainAttestations.h.

@@ -429,7 +421,7 @@ Static Private Attributes
-

Definition at line 463 of file XChainAttestations.h.

+

Definition at line 453 of file XChainAttestations.h.

@@ -457,51 +449,7 @@ Static Private Attributes
-

Definition at line 471 of file XChainAttestations.h.

- -
- - -

◆ verify()

- -
-
- - - - - -
- - - - -
bool ripple::XChainAttestationsBase< XChainCreateAccountAttestation >::verify
-
-inherited
-
- -
-
- -

◆ message()

- -
-
- - - - - -
- - - - -
std::vector<std::uint8_t> ripple::XChainAttestationsBase< XChainCreateAccountAttestation >::message
-
-protectedinherited
-
+

Definition at line 461 of file XChainAttestations.h.

diff --git a/functions_func_m.html b/functions_func_m.html index b639eb5443..58320ac6c4 100644 --- a/functions_func_m.html +++ b/functions_func_m.html @@ -493,7 +493,7 @@ $(function() {
  • message() : ripple::Attestations::AttestationBase -, ripple::Attestations::AttestationClaim +, ripple::Attestations::AttestationClaim , ripple::Attestations::AttestationCreateAccount , ripple::cryptoconditions::detail::cryptoconditions_error_category
  • @@ -504,7 +504,6 @@ $(function() {
  • message() : ripple::RPC::Status , ripple::test::Validator -, ripple::XChainAttestationsBase< TAttestation >
  • message_queue_send() : ripple::test::detail::multi_runner_base< IsParent > @@ -517,16 +516,16 @@ $(function() { : ripple::Message
  • MessageWithHash() -: ripple::ValidatorList::MessageWithHash +: ripple::ValidatorList::MessageWithHash
  • meta() : ripple::test::jtx::Env
  • Meter() -: beast::insight::Meter +: beast::insight::Meter
  • Metrics() -: ripple::PeerImp::Metrics +: ripple::PeerImp::Metrics , ripple::TxQ::Metrics
  • min() @@ -574,7 +573,7 @@ $(function() { , ripple::tests::TestNodeFamily
  • MissingNodes() -: ripple::SHAMap::MissingNodes +: ripple::SHAMap::MissingNodes
  • missingSite() : ripple::ValidatorSite @@ -632,7 +631,7 @@ $(function() { : ripple::NodeStore::ShardInfo
  • msig() -: ripple::test::jtx::msig +: ripple::test::jtx::msig
  • mulratio() : ripple::test::AMMCalc_test @@ -644,10 +643,10 @@ $(function() { : ripple::test::detail::multi_runner_base< IsParent >
  • multi_runner_child() -: ripple::test::multi_runner_child +: ripple::test::multi_runner_child
  • multi_runner_parent() -: ripple::test::multi_runner_parent +: ripple::test::multi_runner_parent
  • multiPath() : ripple::AMMContext diff --git a/functions_func_v.html b/functions_func_v.html index c6d464757d..081a19a1a1 100644 --- a/functions_func_v.html +++ b/functions_func_v.html @@ -242,7 +242,6 @@ $(function() { , ripple::test::XChainSim_test::ChainStateTrack , ripple::test::XChainSim_test::ChainStateTracker , ripple::ValidatorList -, ripple::XChainAttestationsBase< TAttestation >
  • verifyDefaultTrustline() : ripple::test::Offer0_test @@ -286,7 +285,7 @@ $(function() {
  • view() : ripple::ApplyContext -, ripple::Transactor +, ripple::Transactor
  • visit() : ripple::ApplyContext diff --git a/functions_m.html b/functions_m.html index cbca79219f..22735696ae 100644 --- a/functions_m.html +++ b/functions_m.html @@ -1738,7 +1738,6 @@ $(function() { , ripple::test::Validator , ripple::ValidatorList::MessageWithHash , ripple::ValidatorSite::Site::Status -, ripple::XChainAttestationsBase< TAttestation >
  • message_ : Json::Reader::ErrorInfo @@ -1819,7 +1818,7 @@ $(function() { : ripple::perf::PerfLogImp::Counters
  • Metrics() -: ripple::PeerImp::Metrics +: ripple::PeerImp::Metrics , ripple::TxQ::Metrics
  • metrics_ @@ -2061,7 +2060,7 @@ $(function() { : ripple::NodeStore::Timing_test
  • MissingNodes() -: ripple::SHAMap::MissingNodes +: ripple::SHAMap::MissingNodes
  • missingNodes_ : ripple::SHAMap::MissingNodes @@ -2411,7 +2410,7 @@ $(function() { : ripple::HTTPClientImp
  • msig() -: ripple::test::jtx::msig +: ripple::test::jtx::msig
  • msig_ : ripple::test::jtx::AMM @@ -2519,7 +2518,7 @@ $(function() { : ripple::test::multi_runner_child
  • multi_runner_parent() -: ripple::test::multi_runner_parent +: ripple::test::multi_runner_parent
  • multiPath() : ripple::AMMContext diff --git a/functions_v.html b/functions_v.html index 3869964701..57393757f2 100644 --- a/functions_v.html +++ b/functions_v.html @@ -469,7 +469,7 @@ $(function() { : ripple::TaggedCache< Key, T, IsKeyCache, Hash, KeyEqual, Mutex >::ValueEntry
  • ValueHash() -: beast::detail::aged_unordered_container< IsMulti, IsMap, Key, T, Clock, Hash, KeyEqual, Allocator >::ValueHash +: beast::detail::aged_unordered_container< IsMulti, IsMap, Key, T, Clock, Hash, KeyEqual, Allocator >::ValueHash
  • ValueIterator() : Json::ValueIterator @@ -489,11 +489,15 @@ $(function() {
  • Values : beast::aged_associative_container_test_base::MaybeMap< Base, IsMap > -, beast::aged_associative_container_test_base::MaybeMap< Base, true >
  • values() : beast::aged_associative_container_test_base::MaybeMap< Base, true > -, ripple::detail::LocalValues +
  • +
  • Values +: beast::aged_associative_container_test_base::MaybeMap< Base, true > +
  • +
  • values +: ripple::detail::LocalValues , ripple::Section
  • values_ @@ -517,7 +521,6 @@ $(function() { , ripple::test::XChainSim_test::ChainStateTrack , ripple::test::XChainSim_test::ChainStateTracker , ripple::ValidatorList -, ripple::XChainAttestationsBase< TAttestation >
  • verify_ : ripple::HTTPClientSSLContext @@ -567,7 +570,7 @@ $(function() { , ripple::test::Path_test
  • view() -: ripple::ApplyContext +: ripple::ApplyContext , ripple::path::RippleCalc , ripple::PreclaimContext , ripple::PreclaimResult diff --git a/namespaceripple.html b/namespaceripple.html index e9c0a5dcdd..a9ebdf5cee 100644 --- a/namespaceripple.html +++ b/namespaceripple.html @@ -47667,7 +47667,7 @@ template<class TAttestation >
    -

    Definition at line 454 of file XChainAttestations.h.

    +

    Definition at line 444 of file XChainAttestations.h.

    diff --git a/search/all_16.js b/search/all_16.js index 8d16539def..8278b1498e 100644 --- a/search/all_16.js +++ b/search/all_16.js @@ -202,7 +202,7 @@ var searchData= ['vector_3c_20xchainclaimattestation_20_3e_12704',['vector< XChainClaimAttestation >',['http://en.cppreference.com/w/cpp/container/vector.html',1,'std']]], ['vector_3c_20xchaincreateaccountattestation_20_3e_12705',['vector< XChainCreateAccountAttestation >',['http://en.cppreference.com/w/cpp/container/vector.html',1,'std']]], ['verificationscheduler_5f_12706',['verificationScheduler_',['../classripple_1_1RPC_1_1ShardArchiveHandler.html#ae753e220dc179447da97185d3d1fc97a',1,'ripple::RPC::ShardArchiveHandler']]], - ['verify_12707',['verify',['../structripple_1_1Manifest.html#a6629a3a6841e98a10a8c93d4373b197b',1,'ripple::Manifest::verify()'],['../classripple_1_1ValidatorList.html#a5f9f984bf774a8dc62ebcc96a9660a25',1,'ripple::ValidatorList::verify()'],['../classripple_1_1NodeStore_1_1NuDBBackend.html#ab012b4ff123427bc35a5d4ac4c6269c0',1,'ripple::NodeStore::NuDBBackend::verify()'],['../classripple_1_1NodeStore_1_1Backend.html#afea5371bd4d7824d96f28700fa831f33',1,'ripple::NodeStore::Backend::verify()'],['../structripple_1_1Attestations_1_1AttestationBase.html#aad607f98c62cf6a885e19be631f0f88f',1,'ripple::Attestations::AttestationBase::verify()'],['../classripple_1_1XChainAttestationsBase.html#a06971a8984ee6b0a80606bbe144d5f4d',1,'ripple::XChainAttestationsBase::verify()'],['../structripple_1_1test_1_1XChainSim__test_1_1AccountStateTrack.html#ad89c550eeb1108f9b824e7e3b6a36e9f',1,'ripple::test::XChainSim_test::AccountStateTrack::verify()'],['../structripple_1_1test_1_1XChainSim__test_1_1ChainStateTrack.html#ab9231f378209d656fe4bf08c512e0053',1,'ripple::test::XChainSim_test::ChainStateTrack::verify()'],['../structripple_1_1test_1_1XChainSim__test_1_1ChainStateTracker.html#a787a48fffb32c5be408d061dbfa382d1',1,'ripple::test::XChainSim_test::ChainStateTracker::verify()'],['../namespaceripple.html#ace4dd4a2d63cd976adb9fac9754ae785',1,'ripple::verify(PublicKey const &publicKey, Slice const &m, Slice const &sig, bool mustBeFullyCanonical=true) noexcept'],['../namespaceripple.html#a3825ae2749d70303831acd1b5971affc',1,'ripple::verify(STObject const &st, HashPrefix const &prefix, PublicKey const &pk, SF_VL const &sigField=sfSignature)']]], + ['verify_12707',['verify',['../structripple_1_1Manifest.html#a6629a3a6841e98a10a8c93d4373b197b',1,'ripple::Manifest::verify()'],['../classripple_1_1ValidatorList.html#a5f9f984bf774a8dc62ebcc96a9660a25',1,'ripple::ValidatorList::verify()'],['../classripple_1_1NodeStore_1_1NuDBBackend.html#ab012b4ff123427bc35a5d4ac4c6269c0',1,'ripple::NodeStore::NuDBBackend::verify()'],['../classripple_1_1NodeStore_1_1Backend.html#afea5371bd4d7824d96f28700fa831f33',1,'ripple::NodeStore::Backend::verify()'],['../structripple_1_1Attestations_1_1AttestationBase.html#aad607f98c62cf6a885e19be631f0f88f',1,'ripple::Attestations::AttestationBase::verify()'],['../structripple_1_1test_1_1XChainSim__test_1_1AccountStateTrack.html#ad89c550eeb1108f9b824e7e3b6a36e9f',1,'ripple::test::XChainSim_test::AccountStateTrack::verify()'],['../structripple_1_1test_1_1XChainSim__test_1_1ChainStateTrack.html#ab9231f378209d656fe4bf08c512e0053',1,'ripple::test::XChainSim_test::ChainStateTrack::verify()'],['../structripple_1_1test_1_1XChainSim__test_1_1ChainStateTracker.html#a787a48fffb32c5be408d061dbfa382d1',1,'ripple::test::XChainSim_test::ChainStateTracker::verify()'],['../namespaceripple.html#ace4dd4a2d63cd976adb9fac9754ae785',1,'ripple::verify(PublicKey const &publicKey, Slice const &m, Slice const &sig, bool mustBeFullyCanonical=true) noexcept'],['../namespaceripple.html#a3825ae2749d70303831acd1b5971affc',1,'ripple::verify(STObject const &st, HashPrefix const &prefix, PublicKey const &pk, SF_VL const &sigField=sfSignature)']]], ['verify_5f_12708',['verify_',['../classripple_1_1HTTPClientSSLContext.html#a2f270f52c4b227a11c6daa3e754344ae',1,'ripple::HTTPClientSSLContext']]], ['verifydefaulttrustline_12709',['verifyDefaultTrustline',['../classripple_1_1test_1_1Offer0__test.html#a979448bc3ed693ee09c1aa5fa308d99c',1,'ripple::test::Offer0_test']]], ['verifydeliveredamount_12710',['verifyDeliveredAmount',['../classripple_1_1test_1_1AccountDelete__test.html#a3a2e08d09c040d83aa23d75f8b0fb58d',1,'ripple::test::AccountDelete_test::verifyDeliveredAmount()'],['../classripple_1_1Check__test.html#a65e46e85c87fc09590221b6d4b389f63',1,'ripple::Check_test::verifyDeliveredAmount()']]], diff --git a/search/all_d.js b/search/all_d.js index 6ad4684840..1d5cdc416f 100644 --- a/search/all_d.js +++ b/search/all_d.js @@ -681,7 +681,7 @@ var searchData= ['mergepages_6382',['mergePages',['../namespaceripple_1_1nft.html#adab522de819bb8d3d9d229cf1ae33e4e',1,'ripple::nft']]], ['mersenne_5ftwister_5fengine_6383',['mersenne_twister_engine',['http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine.html',1,'std::mersenne_twister_engine'],['http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/mersenne_twister_engine.html',1,'std::mersenne_twister_engine::mersenne_twister_engine()']]], ['mesg_6384',['mesg',['../structripple_1_1test_1_1csf_1_1Peer_1_1BroadcastMesg.html#ad2504782582f5588e25cf7c64008f957',1,'ripple::test::csf::Peer::BroadcastMesg']]], - ['message_6385',['Message',['../classripple_1_1Message.html',1,'ripple::Message'],['../classripple_1_1PeerFinder_1_1Sim_1_1Message.html',1,'ripple::PeerFinder::Sim::Message'],['../classripple_1_1Message.html#a51a8e5f78d38a7bba124be9b7e6019f6',1,'ripple::Message::Message()'],['../classripple_1_1PeerFinder_1_1Sim_1_1Message.html#a1dd9708ea618b403a4e4f04a63a1e944',1,'ripple::PeerFinder::Sim::Message::Message()'],['../structripple_1_1ValidatorList_1_1MessageWithHash.html#a3f0f985ee64019ae9d2d9c5081aeb799',1,'ripple::ValidatorList::MessageWithHash::message()'],['../structripple_1_1ValidatorSite_1_1Site_1_1Status.html#a8a4c75f97ab028a61b0234965200e247',1,'ripple::ValidatorSite::Site::Status::message()'],['../structripple_1_1RPC_1_1ErrorInfo.html#a7da2ca0fedad1eb20f8a492eebc55d67',1,'ripple::RPC::ErrorInfo::message()'],['http://en.cppreference.com/w/cpp/error/error_category/message.html',1,'std::error_category::message()'],['http://en.cppreference.com/w/cpp/error/error_code/message.html',1,'std::error_code::message()'],['http://en.cppreference.com/w/cpp/error/error_condition/message.html',1,'std::error_condition::message()'],['../classripple_1_1cryptoconditions_1_1detail_1_1cryptoconditions__error__category.html#a9f9f3b9d50d2a8e152d4024dc12f910a',1,'ripple::cryptoconditions::detail::cryptoconditions_error_category::message()'],['../structripple_1_1Attestations_1_1AttestationBase.html#aaf7d29dd21b39d16e01bcda0710c3fa0',1,'ripple::Attestations::AttestationBase::message()'],['../structripple_1_1Attestations_1_1AttestationClaim.html#af947930398a6a438d3f87b272eb66913',1,'ripple::Attestations::AttestationClaim::message(STXChainBridge const &bridge, AccountID const &sendingAccount, STAmount const &sendingAmount, AccountID const &rewardAccount, bool wasLockingChainSend, std::uint64_t claimID, std::optional< AccountID > const &dst)'],['../structripple_1_1Attestations_1_1AttestationClaim.html#ab785d9a7e9a2798a743220b759ba07b7',1,'ripple::Attestations::AttestationClaim::message(STXChainBridge const &bridge) const override'],['../structripple_1_1Attestations_1_1AttestationCreateAccount.html#a4f5cc653435d8ca99a43de07cdf5a7a5',1,'ripple::Attestations::AttestationCreateAccount::message(STXChainBridge const &bridge, AccountID const &sendingAccount, STAmount const &sendingAmount, STAmount const &rewardAmount, AccountID const &rewardAccount, bool wasLockingChainSend, std::uint64_t createCount, AccountID const &dst)'],['../structripple_1_1Attestations_1_1AttestationCreateAccount.html#a2e4f4bac4d97ad98311867b633d5cf14',1,'ripple::Attestations::AttestationCreateAccount::message(STXChainBridge const &bridge) const override'],['../classripple_1_1XChainAttestationsBase.html#ac2c35ef1c0bfcd79b447d308505110d8',1,'ripple::XChainAttestationsBase::message()'],['../structripple_1_1RPC_1_1Status.html#aa165b8333995cd723ab1c3da79381b03',1,'ripple::RPC::Status::message()'],['../classripple_1_1test_1_1Validator.html#a309af37a14f61c4d6c3934d853c5dd1a',1,'ripple::test::Validator::message()']]], + ['message_6385',['Message',['../classripple_1_1Message.html',1,'ripple::Message'],['../classripple_1_1PeerFinder_1_1Sim_1_1Message.html',1,'ripple::PeerFinder::Sim::Message'],['../classripple_1_1Message.html#a51a8e5f78d38a7bba124be9b7e6019f6',1,'ripple::Message::Message()'],['../classripple_1_1PeerFinder_1_1Sim_1_1Message.html#a1dd9708ea618b403a4e4f04a63a1e944',1,'ripple::PeerFinder::Sim::Message::Message()'],['../structripple_1_1ValidatorList_1_1MessageWithHash.html#a3f0f985ee64019ae9d2d9c5081aeb799',1,'ripple::ValidatorList::MessageWithHash::message()'],['../structripple_1_1ValidatorSite_1_1Site_1_1Status.html#a8a4c75f97ab028a61b0234965200e247',1,'ripple::ValidatorSite::Site::Status::message()'],['../structripple_1_1RPC_1_1ErrorInfo.html#a7da2ca0fedad1eb20f8a492eebc55d67',1,'ripple::RPC::ErrorInfo::message()'],['http://en.cppreference.com/w/cpp/error/error_category/message.html',1,'std::error_category::message()'],['http://en.cppreference.com/w/cpp/error/error_code/message.html',1,'std::error_code::message()'],['http://en.cppreference.com/w/cpp/error/error_condition/message.html',1,'std::error_condition::message()'],['../classripple_1_1cryptoconditions_1_1detail_1_1cryptoconditions__error__category.html#a9f9f3b9d50d2a8e152d4024dc12f910a',1,'ripple::cryptoconditions::detail::cryptoconditions_error_category::message()'],['../structripple_1_1Attestations_1_1AttestationBase.html#aaf7d29dd21b39d16e01bcda0710c3fa0',1,'ripple::Attestations::AttestationBase::message()'],['../structripple_1_1Attestations_1_1AttestationClaim.html#af947930398a6a438d3f87b272eb66913',1,'ripple::Attestations::AttestationClaim::message(STXChainBridge const &bridge, AccountID const &sendingAccount, STAmount const &sendingAmount, AccountID const &rewardAccount, bool wasLockingChainSend, std::uint64_t claimID, std::optional< AccountID > const &dst)'],['../structripple_1_1Attestations_1_1AttestationClaim.html#ab785d9a7e9a2798a743220b759ba07b7',1,'ripple::Attestations::AttestationClaim::message(STXChainBridge const &bridge) const override'],['../structripple_1_1Attestations_1_1AttestationCreateAccount.html#a4f5cc653435d8ca99a43de07cdf5a7a5',1,'ripple::Attestations::AttestationCreateAccount::message(STXChainBridge const &bridge, AccountID const &sendingAccount, STAmount const &sendingAmount, STAmount const &rewardAmount, AccountID const &rewardAccount, bool wasLockingChainSend, std::uint64_t createCount, AccountID const &dst)'],['../structripple_1_1Attestations_1_1AttestationCreateAccount.html#a2e4f4bac4d97ad98311867b633d5cf14',1,'ripple::Attestations::AttestationCreateAccount::message(STXChainBridge const &bridge) const override'],['../structripple_1_1RPC_1_1Status.html#aa165b8333995cd723ab1c3da79381b03',1,'ripple::RPC::Status::message()'],['../classripple_1_1test_1_1Validator.html#a309af37a14f61c4d6c3934d853c5dd1a',1,'ripple::test::Validator::message()']]], ['message_5f_6386',['message_',['../classJson_1_1Reader_1_1ErrorInfo.html#aeb2fb6537a8bb978b239ea1482d73d7a',1,'Json::Reader::ErrorInfo::message_()'],['../classripple_1_1BaseHTTPPeer.html#a24480012d2d04d04359c864a7a388229',1,'ripple::BaseHTTPPeer::message_()'],['../classripple_1_1test_1_1Validator.html#ad756b3a964cbc8433fafe4b06b0b1251',1,'ripple::test::Validator::message_()']]], ['message_5fqueue_5f_6387',['message_queue_',['../classripple_1_1test_1_1detail_1_1multi__runner__base.html#abf82d59f14b7d5056a76def513013a68',1,'ripple::test::detail::multi_runner_base']]], ['message_5fqueue_5fname_5f_6388',['message_queue_name_',['../classripple_1_1test_1_1detail_1_1multi__runner__base.html#ab1aeddba9f1cacfc86be30eaaa0e2db8',1,'ripple::test::detail::multi_runner_base']]], diff --git a/search/functions_16.js b/search/functions_16.js index 8ed856ac55..7cd40ff0b5 100644 --- a/search/functions_16.js +++ b/search/functions_16.js @@ -49,7 +49,7 @@ var searchData= ['variant_23239',['variant',['http://en.cppreference.com/w/cpp/utility/variant/variant.html',1,'std::variant']]], ['varint_5ftraits_23240',['varint_traits',['../structripple_1_1NodeStore_1_1varint__traits_3_01T_00_01true_01_4.html#a30c1c8932925bf73605ac65823ae1533',1,'ripple::NodeStore::varint_traits< T, true >']]], ['vector_23241',['vector',['http://en.cppreference.com/w/cpp/container/vector/vector.html',1,'std::pmr::vector::vector()'],['http://en.cppreference.com/w/cpp/container/vector/vector.html',1,'std::vector::vector()']]], - ['verify_23242',['verify',['../structripple_1_1Manifest.html#a6629a3a6841e98a10a8c93d4373b197b',1,'ripple::Manifest::verify()'],['../classripple_1_1ValidatorList.html#a5f9f984bf774a8dc62ebcc96a9660a25',1,'ripple::ValidatorList::verify()'],['../classripple_1_1NodeStore_1_1NuDBBackend.html#ab012b4ff123427bc35a5d4ac4c6269c0',1,'ripple::NodeStore::NuDBBackend::verify()'],['../classripple_1_1NodeStore_1_1Backend.html#afea5371bd4d7824d96f28700fa831f33',1,'ripple::NodeStore::Backend::verify()'],['../structripple_1_1Attestations_1_1AttestationBase.html#aad607f98c62cf6a885e19be631f0f88f',1,'ripple::Attestations::AttestationBase::verify()'],['../classripple_1_1XChainAttestationsBase.html#a06971a8984ee6b0a80606bbe144d5f4d',1,'ripple::XChainAttestationsBase::verify()'],['../structripple_1_1test_1_1XChainSim__test_1_1AccountStateTrack.html#ad89c550eeb1108f9b824e7e3b6a36e9f',1,'ripple::test::XChainSim_test::AccountStateTrack::verify()'],['../structripple_1_1test_1_1XChainSim__test_1_1ChainStateTrack.html#ab9231f378209d656fe4bf08c512e0053',1,'ripple::test::XChainSim_test::ChainStateTrack::verify()'],['../structripple_1_1test_1_1XChainSim__test_1_1ChainStateTracker.html#a787a48fffb32c5be408d061dbfa382d1',1,'ripple::test::XChainSim_test::ChainStateTracker::verify()'],['../namespaceripple.html#ace4dd4a2d63cd976adb9fac9754ae785',1,'ripple::verify(PublicKey const &publicKey, Slice const &m, Slice const &sig, bool mustBeFullyCanonical=true) noexcept'],['../namespaceripple.html#a3825ae2749d70303831acd1b5971affc',1,'ripple::verify(STObject const &st, HashPrefix const &prefix, PublicKey const &pk, SF_VL const &sigField=sfSignature)']]], + ['verify_23242',['verify',['../structripple_1_1Manifest.html#a6629a3a6841e98a10a8c93d4373b197b',1,'ripple::Manifest::verify()'],['../classripple_1_1ValidatorList.html#a5f9f984bf774a8dc62ebcc96a9660a25',1,'ripple::ValidatorList::verify()'],['../classripple_1_1NodeStore_1_1NuDBBackend.html#ab012b4ff123427bc35a5d4ac4c6269c0',1,'ripple::NodeStore::NuDBBackend::verify()'],['../classripple_1_1NodeStore_1_1Backend.html#afea5371bd4d7824d96f28700fa831f33',1,'ripple::NodeStore::Backend::verify()'],['../structripple_1_1Attestations_1_1AttestationBase.html#aad607f98c62cf6a885e19be631f0f88f',1,'ripple::Attestations::AttestationBase::verify()'],['../structripple_1_1test_1_1XChainSim__test_1_1AccountStateTrack.html#ad89c550eeb1108f9b824e7e3b6a36e9f',1,'ripple::test::XChainSim_test::AccountStateTrack::verify()'],['../structripple_1_1test_1_1XChainSim__test_1_1ChainStateTrack.html#ab9231f378209d656fe4bf08c512e0053',1,'ripple::test::XChainSim_test::ChainStateTrack::verify()'],['../structripple_1_1test_1_1XChainSim__test_1_1ChainStateTracker.html#a787a48fffb32c5be408d061dbfa382d1',1,'ripple::test::XChainSim_test::ChainStateTracker::verify()'],['../namespaceripple.html#ace4dd4a2d63cd976adb9fac9754ae785',1,'ripple::verify(PublicKey const &publicKey, Slice const &m, Slice const &sig, bool mustBeFullyCanonical=true) noexcept'],['../namespaceripple.html#a3825ae2749d70303831acd1b5971affc',1,'ripple::verify(STObject const &st, HashPrefix const &prefix, PublicKey const &pk, SF_VL const &sigField=sfSignature)']]], ['verifydefaulttrustline_23243',['verifyDefaultTrustline',['../classripple_1_1test_1_1Offer0__test.html#a979448bc3ed693ee09c1aa5fa308d99c',1,'ripple::test::Offer0_test']]], ['verifydeliveredamount_23244',['verifyDeliveredAmount',['../classripple_1_1test_1_1AccountDelete__test.html#a3a2e08d09c040d83aa23d75f8b0fb58d',1,'ripple::test::AccountDelete_test::verifyDeliveredAmount()'],['../classripple_1_1Check__test.html#a65e46e85c87fc09590221b6d4b389f63',1,'ripple::Check_test::verifyDeliveredAmount()']]], ['verifydigest_23245',['verifyDigest',['../namespaceripple.html#a52366e572b1b40e5e913cf14e1d51ce3',1,'ripple']]], diff --git a/search/functions_d.js b/search/functions_d.js index 63b37ae0e7..5ea3d64d28 100644 --- a/search/functions_d.js +++ b/search/functions_d.js @@ -234,7 +234,7 @@ var searchData= ['mergedispositions_19972',['mergeDispositions',['../structripple_1_1ValidatorList_1_1PublisherListStats.html#a0152f32b497bbaa62e9a85e0be90bb02',1,'ripple::ValidatorList::PublisherListStats']]], ['mergepages_19973',['mergePages',['../namespaceripple_1_1nft.html#adab522de819bb8d3d9d229cf1ae33e4e',1,'ripple::nft']]], ['mersenne_5ftwister_5fengine_19974',['mersenne_twister_engine',['http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/mersenne_twister_engine.html',1,'std::mersenne_twister_engine']]], - ['message_19975',['Message',['../classripple_1_1Message.html#a51a8e5f78d38a7bba124be9b7e6019f6',1,'ripple::Message::Message()'],['../classripple_1_1PeerFinder_1_1Sim_1_1Message.html#a1dd9708ea618b403a4e4f04a63a1e944',1,'ripple::PeerFinder::Sim::Message::Message()'],['http://en.cppreference.com/w/cpp/error/error_category/message.html',1,'std::error_category::message()'],['http://en.cppreference.com/w/cpp/error/error_code/message.html',1,'std::error_code::message()'],['http://en.cppreference.com/w/cpp/error/error_condition/message.html',1,'std::error_condition::message()'],['../classripple_1_1cryptoconditions_1_1detail_1_1cryptoconditions__error__category.html#a9f9f3b9d50d2a8e152d4024dc12f910a',1,'ripple::cryptoconditions::detail::cryptoconditions_error_category::message()'],['../structripple_1_1Attestations_1_1AttestationBase.html#aaf7d29dd21b39d16e01bcda0710c3fa0',1,'ripple::Attestations::AttestationBase::message()'],['../structripple_1_1Attestations_1_1AttestationClaim.html#af947930398a6a438d3f87b272eb66913',1,'ripple::Attestations::AttestationClaim::message(STXChainBridge const &bridge, AccountID const &sendingAccount, STAmount const &sendingAmount, AccountID const &rewardAccount, bool wasLockingChainSend, std::uint64_t claimID, std::optional< AccountID > const &dst)'],['../structripple_1_1Attestations_1_1AttestationClaim.html#ab785d9a7e9a2798a743220b759ba07b7',1,'ripple::Attestations::AttestationClaim::message(STXChainBridge const &bridge) const override'],['../structripple_1_1Attestations_1_1AttestationCreateAccount.html#a4f5cc653435d8ca99a43de07cdf5a7a5',1,'ripple::Attestations::AttestationCreateAccount::message(STXChainBridge const &bridge, AccountID const &sendingAccount, STAmount const &sendingAmount, STAmount const &rewardAmount, AccountID const &rewardAccount, bool wasLockingChainSend, std::uint64_t createCount, AccountID const &dst)'],['../structripple_1_1Attestations_1_1AttestationCreateAccount.html#a2e4f4bac4d97ad98311867b633d5cf14',1,'ripple::Attestations::AttestationCreateAccount::message(STXChainBridge const &bridge) const override'],['../classripple_1_1XChainAttestationsBase.html#ac2c35ef1c0bfcd79b447d308505110d8',1,'ripple::XChainAttestationsBase::message()'],['../structripple_1_1RPC_1_1Status.html#aa165b8333995cd723ab1c3da79381b03',1,'ripple::RPC::Status::message()'],['../classripple_1_1test_1_1Validator.html#a309af37a14f61c4d6c3934d853c5dd1a',1,'ripple::test::Validator::message()']]], + ['message_19975',['Message',['../classripple_1_1Message.html#a51a8e5f78d38a7bba124be9b7e6019f6',1,'ripple::Message::Message()'],['../classripple_1_1PeerFinder_1_1Sim_1_1Message.html#a1dd9708ea618b403a4e4f04a63a1e944',1,'ripple::PeerFinder::Sim::Message::Message()'],['http://en.cppreference.com/w/cpp/error/error_category/message.html',1,'std::error_category::message()'],['http://en.cppreference.com/w/cpp/error/error_code/message.html',1,'std::error_code::message()'],['http://en.cppreference.com/w/cpp/error/error_condition/message.html',1,'std::error_condition::message()'],['../classripple_1_1cryptoconditions_1_1detail_1_1cryptoconditions__error__category.html#a9f9f3b9d50d2a8e152d4024dc12f910a',1,'ripple::cryptoconditions::detail::cryptoconditions_error_category::message()'],['../structripple_1_1Attestations_1_1AttestationBase.html#aaf7d29dd21b39d16e01bcda0710c3fa0',1,'ripple::Attestations::AttestationBase::message()'],['../structripple_1_1Attestations_1_1AttestationClaim.html#af947930398a6a438d3f87b272eb66913',1,'ripple::Attestations::AttestationClaim::message(STXChainBridge const &bridge, AccountID const &sendingAccount, STAmount const &sendingAmount, AccountID const &rewardAccount, bool wasLockingChainSend, std::uint64_t claimID, std::optional< AccountID > const &dst)'],['../structripple_1_1Attestations_1_1AttestationClaim.html#ab785d9a7e9a2798a743220b759ba07b7',1,'ripple::Attestations::AttestationClaim::message(STXChainBridge const &bridge) const override'],['../structripple_1_1Attestations_1_1AttestationCreateAccount.html#a4f5cc653435d8ca99a43de07cdf5a7a5',1,'ripple::Attestations::AttestationCreateAccount::message(STXChainBridge const &bridge, AccountID const &sendingAccount, STAmount const &sendingAmount, STAmount const &rewardAmount, AccountID const &rewardAccount, bool wasLockingChainSend, std::uint64_t createCount, AccountID const &dst)'],['../structripple_1_1Attestations_1_1AttestationCreateAccount.html#a2e4f4bac4d97ad98311867b633d5cf14',1,'ripple::Attestations::AttestationCreateAccount::message(STXChainBridge const &bridge) const override'],['../structripple_1_1RPC_1_1Status.html#aa165b8333995cd723ab1c3da79381b03',1,'ripple::RPC::Status::message()'],['../classripple_1_1test_1_1Validator.html#a309af37a14f61c4d6c3934d853c5dd1a',1,'ripple::test::Validator::message()']]], ['message_5fqueue_5fsend_19976',['message_queue_send',['../classripple_1_1test_1_1detail_1_1multi__runner__base.html#ab4ad584e02145885460bedaca75c306a',1,'ripple::test::detail::multi_runner_base']]], ['messages_19977',['messages',['http://en.cppreference.com/w/cpp/locale/messages/messages.html',1,'std::messages::messages()'],['../structripple_1_1RPC_1_1Status.html#a527413f2f04708bfd1d4f69bf86a3e6d',1,'ripple::RPC::Status::messages()'],['../classripple_1_1test_1_1StreamSink.html#aa1869e8b48bbe2118a602c6ed15313c9',1,'ripple::test::StreamSink::messages()']]], ['messages_5fbyname_19978',['messages_byname',['http://en.cppreference.com/w/cpp/locale/messages_byname.html',1,'std::messages_byname']]],