diff --git a/doc/validator-keys-tool-guide.md b/doc/validator-keys-tool-guide.md index c65180e..ee3d113 100644 --- a/doc/validator-keys-tool-guide.md +++ b/doc/validator-keys-tool-guide.md @@ -47,7 +47,7 @@ validator token: Sample output: ``` - Update rippled.cfg file with these values: + Update xrpld.cfg file with these values: # validator public key: nHUtNnLVx7odrz5dnfb2xpIgbEeJPbzJWfdicSkGyVw1eE5GpjQr @@ -85,7 +85,7 @@ Sample output: ``` WARNING: This will revoke your validator keys! - Update rippled.cfg file with these values and restart rippled: + Update xrpld.cfg file with these values and restart rippled: # validator public key: nHUtNnLVx7odrz5dnfb2xpIgbEeJPbzJWfdicSkGyVw1eE5GpjQr diff --git a/src/ValidatorKeysTool.cpp b/src/ValidatorKeysTool.cpp index a899234..453fcf3 100644 --- a/src/ValidatorKeysTool.cpp +++ b/src/ValidatorKeysTool.cpp @@ -107,7 +107,7 @@ createToken(boost::filesystem::path const& keyFile) keys.writeToFile(keyFile); std::cout - << "Update rippled.cfg file with these values and restart rippled:\n\n"; + << "Update xrpld.cfg file with these values and restart rippled:\n\n"; std::cout << "# validator public key: " << toBase58(TokenType::NodePublic, keys.publicKey()) << "\n\n"; std::cout << "[validator_token]\n"; @@ -138,7 +138,7 @@ createRevocation(boost::filesystem::path const& keyFile) keys.writeToFile(keyFile); std::cout - << "Update rippled.cfg file with these values and restart rippled:\n\n"; + << "Update xrpld.cfg file with these values and restart rippled:\n\n"; std::cout << "# validator public key: " << toBase58(TokenType::NodePublic, keys.publicKey()) << "\n\n"; std::cout << "[validator_key_revocation]\n"; @@ -229,7 +229,7 @@ setDomain(std::string const& domain, boost::filesystem::path const& keyFile) attestDomain(keys); std::cout << "\n"; - std::cout << "You also need to update the rippled.cfg file to add a new\n"; + std::cout << "You also need to update the xrpld.cfg file to add a new\n"; std::cout << "validator token and restart rippled:\n\n"; std::cout << "# validator public key: " << toBase58(TokenType::NodePublic, keys.publicKey()) << "\n\n";