mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Tidying & Selectively forward manifests to peers:
* Do not forward manifests to peers that already know that manifest * Do not forward historical manifests to peers * Save/Load ValidatorManifests from a database * Python test for setting ephmeral keys * Cleanup manifest interface
This commit is contained in:
@@ -123,7 +123,8 @@ public:
|
||||
AnyPublicKey& operator= (AnyPublicKey&& other)
|
||||
{
|
||||
buffer_type::member =
|
||||
std::move(other.buffer_type::member);
|
||||
std::move (other.buffer_type::member);
|
||||
AnyPublicKeySlice::operator= (other);
|
||||
return *this;
|
||||
}
|
||||
#else
|
||||
@@ -179,6 +180,9 @@ struct STExchange<STBlob, AnyPublicKey>
|
||||
}
|
||||
};
|
||||
|
||||
std::string
|
||||
toString (AnyPublicKey const& pk);
|
||||
|
||||
} // ripple
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user