mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-22 23:00:55 +00:00
refactor: Rename non-functional uses of ripple(d) to xrpl(d) (#6676)
Co-authored-by: Bart <11445373+bthomee@users.noreply.github.com>
This commit is contained in:
@@ -471,7 +471,7 @@ struct Credentials_test : public beast::unit_test::suite
|
||||
{
|
||||
testcase("Credentials fail, expiration in the past.");
|
||||
auto jv = credentials::create(subject, issuer, credType);
|
||||
// current time in ripple epoch - 1s
|
||||
// current time in XRPL epoch - 1s
|
||||
uint32_t const t =
|
||||
env.current()->header().parentCloseTime.time_since_epoch().count() - 1;
|
||||
jv[sfExpiration.jsonName] = t;
|
||||
@@ -812,7 +812,7 @@ struct Credentials_test : public beast::unit_test::suite
|
||||
testcase("CredentialsDelete fail, time not expired yet.");
|
||||
|
||||
auto jv = credentials::create(subject, issuer, credType);
|
||||
// current time in ripple epoch + 1000s
|
||||
// current time in XRPL epoch + 1000s
|
||||
uint32_t const t =
|
||||
env.current()->header().parentCloseTime.time_since_epoch().count() + 1000;
|
||||
jv[sfExpiration.jsonName] = t;
|
||||
|
||||
Reference in New Issue
Block a user