aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_rpc_server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet/wallet_rpc_server.cpp')
-rw-r--r--src/wallet/wallet_rpc_server.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp
index 6a3e92b0b..68b28652e 100644
--- a/src/wallet/wallet_rpc_server.cpp
+++ b/src/wallet/wallet_rpc_server.cpp
@@ -69,7 +69,7 @@ using namespace epee;
if (m_wallet->multisig() && !m_wallet->is_multisig_enabled()) \
{ \
er.code = WALLET_RPC_ERROR_CODE_DISABLED; \
- er.message = "This wallet is multisig, and multisig is disabled. Multisig is an experimental feature and may have bugs. Things that could go wrong include: funds sent to a multisig wallet can't be spent at all, can only be spent with the participation of a malicious group member, or can be stolen by a malicious group member. You can enable it by running this once in monero-wallet-cli: set enable-multisig-experimental 1"; \
+ er.message = "This wallet is multisig, and multisig is disabled. Multisig is an experimental feature and may have bugs. Things that could go wrong include: funds sent to a multisig wallet can't be spent at all, can only be spent with the participation of a malicious group member, or can be stolen by a malicious group member. You can enable it by running this once in monzero-wallet-cli: set enable-multisig-experimental 1"; \
return false; \
} \
} while(0)
@@ -431,7 +431,7 @@ namespace tools
tools::wallet2::BackgroundMiningSetupType setup = m_wallet->setup_background_mining();
if (setup == tools::wallet2::BackgroundMiningNo)
{
- MLOG_RED(el::Level::Warning, "Background mining not enabled. Run \"set setup-background-mining 1\" in monero-wallet-cli to change.");
+ MLOG_RED(el::Level::Warning, "Background mining not enabled. Run \"set setup-background-mining 1\" in monzero-wallet-cli to change.");
return;
}
@@ -456,8 +456,8 @@ namespace tools
{
MINFO("The daemon is not set up to background mine.");
MINFO("With background mining enabled, the daemon will mine when idle and not on battery.");
- MINFO("Enabling this supports the network you are using, and makes you eligible for receiving new monero");
- MINFO("Set setup-background-mining to 1 in monero-wallet-cli to change.");
+ MINFO("Enabling this supports the network you are using, and makes you eligible for receiving new XMZ");
+ MINFO("Set setup-background-mining to 1 in monzero-wallet-cli to change.");
return;
}
@@ -1055,7 +1055,7 @@ namespace tools
}
if (addresses.empty())
{
- er.message = std::string("No Monero address found at ") + url;
+ er.message = std::string("No Monzero address found at ") + url;
return {};
}
return addresses[0];
@@ -2468,7 +2468,7 @@ namespace tools
}
if (addresses.empty())
{
- er.message = std::string("No Monero address found at ") + url;
+ er.message = std::string("No Monzero address found at ") + url;
return {};
}
return addresses[0];
@@ -3275,7 +3275,7 @@ namespace tools
}
if (addresses.empty())
{
- er.message = std::string("No Monero address found at ") + url;
+ er.message = std::string("No Monzero address found at ") + url;
return {};
}
return addresses[0];
@@ -3323,7 +3323,7 @@ namespace tools
}
if (addresses.empty())
{
- er.message = std::string("No Monero address found at ") + url;
+ er.message = std::string("No Monzero address found at ") + url;
return {};
}
return addresses[0];
@@ -4655,7 +4655,7 @@ namespace tools
}
if (addresses.empty())
{
- er.message = std::string("No Monero address found at ") + url;
+ er.message = std::string("No Monzero address found at ") + url;
return {};
}
address = addresses[0];
@@ -5080,8 +5080,8 @@ int main(int argc, char** argv) {
bool should_terminate = false;
std::tie(vm, should_terminate) = wallet_args::main(
argc, argv,
- "monero-wallet-rpc [--wallet-file=<file>|--generate-from-json=<file>|--wallet-dir=<directory>] [--rpc-bind-port=<port>]",
- tools::wallet_rpc_server::tr("This is the RPC monero wallet. It needs to connect to a monero\ndaemon to work correctly."),
+ "monzero-wallet-rpc [--wallet-file=<file>|--generate-from-json=<file>|--wallet-dir=<directory>] [--rpc-bind-port=<port>]",
+ tools::wallet_rpc_server::tr("This is the RPC Monzero wallet. It needs to connect to a Monzero\ndaemon to work correctly."),
desc_params,
po::positional_options_description(),
[](const std::string &s, bool emphasis){ tools::scoped_message_writer(emphasis ? epee::console_color_white : epee::console_color_default, true) << s; },