Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/validator-keys-tool-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions src/ValidatorKeysTool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down