mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 08:46:46 +00:00
refactor: Fix spelling issues in all variables/functions (#6184)
This change fixes many typos in comments, variables, and public functions. There is no functionality change.
This commit is contained in:
@@ -261,7 +261,7 @@ class Simulate_test : public beast::unit_test::suite
|
||||
{
|
||||
// `seed` field included
|
||||
Json::Value params = Json::objectValue;
|
||||
params[jss::seed] = "doesnt_matter";
|
||||
params[jss::seed] = "random_data";
|
||||
Json::Value tx_json = Json::objectValue;
|
||||
tx_json[jss::TransactionType] = jss::AccountSet;
|
||||
tx_json[jss::Account] = env.master.human();
|
||||
@@ -274,7 +274,7 @@ class Simulate_test : public beast::unit_test::suite
|
||||
{
|
||||
// `secret` field included
|
||||
Json::Value params = Json::objectValue;
|
||||
params[jss::secret] = "doesnt_matter";
|
||||
params[jss::secret] = "random_data";
|
||||
Json::Value tx_json = Json::objectValue;
|
||||
tx_json[jss::TransactionType] = jss::AccountSet;
|
||||
tx_json[jss::Account] = env.master.human();
|
||||
@@ -287,7 +287,7 @@ class Simulate_test : public beast::unit_test::suite
|
||||
{
|
||||
// `seed_hex` field included
|
||||
Json::Value params = Json::objectValue;
|
||||
params[jss::seed_hex] = "doesnt_matter";
|
||||
params[jss::seed_hex] = "random_data";
|
||||
Json::Value tx_json = Json::objectValue;
|
||||
tx_json[jss::TransactionType] = jss::AccountSet;
|
||||
tx_json[jss::Account] = env.master.human();
|
||||
@@ -300,7 +300,7 @@ class Simulate_test : public beast::unit_test::suite
|
||||
{
|
||||
// `passphrase` field included
|
||||
Json::Value params = Json::objectValue;
|
||||
params[jss::passphrase] = "doesnt_matter";
|
||||
params[jss::passphrase] = "random_data";
|
||||
Json::Value tx_json = Json::objectValue;
|
||||
tx_json[jss::TransactionType] = jss::AccountSet;
|
||||
tx_json[jss::Account] = env.master.human();
|
||||
|
||||
Reference in New Issue
Block a user