refactor: Rename ripple namespace to xrpl

This commit is contained in:
Bart
2025-11-10 11:49:19 -05:00
parent 7141781db4
commit 09c61d6fc4
1235 changed files with 3810 additions and 3823 deletions

View File

@@ -12,7 +12,7 @@
#include <optional>
#include <sstream>
namespace ripple {
namespace xrpl {
// Validation flags
@@ -175,7 +175,7 @@ STValidation::STValidation(
XRPL_ASSERT(
nodeID_.isNonZero(),
"ripple::STValidation::STValidation(SerialIter) : nonzero node");
"xrpl::STValidation::STValidation(SerialIter) : nonzero node");
}
/** Construct, sign and trust a new STValidation issued by this node.
@@ -200,7 +200,7 @@ STValidation::STValidation(
{
XRPL_ASSERT(
nodeID_.isNonZero(),
"ripple::STValidation::STValidation(PublicKey, SecretKey) : nonzero "
"xrpl::STValidation::STValidation(PublicKey, SecretKey) : nonzero "
"node");
// First, set our own public key:
@@ -267,6 +267,6 @@ STValidation::setSeen(NetClock::time_point s)
seenTime_ = s;
}
} // namespace ripple
} // namespace xrpl
#endif