rename to wownero
This commit is contained in:
parent
64aab43a42
commit
a801517396
|
@ -208,7 +208,7 @@ int main(int argc, char* argv[])
|
||||||
|
|
||||||
if (command_line::get_arg(vm, command_line::arg_help))
|
if (command_line::get_arg(vm, command_line::arg_help))
|
||||||
{
|
{
|
||||||
std::cout << "Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL << ENDL;
|
std::cout << "Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL << ENDL;
|
||||||
std::cout << desc_options << std::endl;
|
std::cout << desc_options << std::endl;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -97,7 +97,7 @@ int main(int argc, char* argv[])
|
||||||
|
|
||||||
if (command_line::get_arg(vm, command_line::arg_help))
|
if (command_line::get_arg(vm, command_line::arg_help))
|
||||||
{
|
{
|
||||||
std::cout << "Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL << ENDL;
|
std::cout << "Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL << ENDL;
|
||||||
std::cout << desc_options << std::endl;
|
std::cout << desc_options << std::endl;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -641,7 +641,7 @@ int main(int argc, char* argv[])
|
||||||
|
|
||||||
if (command_line::get_arg(vm, command_line::arg_help))
|
if (command_line::get_arg(vm, command_line::arg_help))
|
||||||
{
|
{
|
||||||
std::cout << "Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL << ENDL;
|
std::cout << "Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL << ENDL;
|
||||||
std::cout << desc_options << std::endl;
|
std::cout << desc_options << std::endl;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -129,7 +129,7 @@ int main(int argc, char* argv[])
|
||||||
|
|
||||||
if (command_line::get_arg(vm, command_line::arg_help))
|
if (command_line::get_arg(vm, command_line::arg_help))
|
||||||
{
|
{
|
||||||
std::cout << "Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL << ENDL;
|
std::cout << "Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL << ENDL;
|
||||||
std::cout << desc_options << std::endl;
|
std::cout << desc_options << std::endl;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1573,7 +1573,7 @@ skip:
|
||||||
if(m_synchronized.compare_exchange_strong(val_expected, true))
|
if(m_synchronized.compare_exchange_strong(val_expected, true))
|
||||||
{
|
{
|
||||||
MGINFO_YELLOW(ENDL << "**********************************************************************" << ENDL
|
MGINFO_YELLOW(ENDL << "**********************************************************************" << ENDL
|
||||||
<< "You are now synchronized with the network. You may now start monero-wallet-cli." << ENDL
|
<< "You are now synchronized with the network. You may now start wownero-wallet-cli." << ENDL
|
||||||
<< ENDL
|
<< ENDL
|
||||||
<< "Use the \"help\" command to see the list of available commands." << ENDL
|
<< "Use the \"help\" command to see the list of available commands." << ENDL
|
||||||
<< "**********************************************************************");
|
<< "**********************************************************************");
|
||||||
|
|
|
@ -329,7 +329,7 @@ bool t_command_server::help(const std::vector<std::string>& args)
|
||||||
std::string t_command_server::get_commands_str()
|
std::string t_command_server::get_commands_str()
|
||||||
{
|
{
|
||||||
std::stringstream ss;
|
std::stringstream ss;
|
||||||
ss << "Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << std::endl;
|
ss << "Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << std::endl;
|
||||||
ss << "Commands: " << std::endl;
|
ss << "Commands: " << std::endl;
|
||||||
std::string usage = m_command_lookup.get_usage();
|
std::string usage = m_command_lookup.get_usage();
|
||||||
boost::replace_all(usage, "\n", "\n ");
|
boost::replace_all(usage, "\n", "\n ");
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
namespace daemonize
|
namespace daemonize
|
||||||
{
|
{
|
||||||
std::string const t_executor::NAME = "Monero Daemon";
|
std::string const t_executor::NAME = "Wownero Daemon";
|
||||||
|
|
||||||
void t_executor::init_options(
|
void t_executor::init_options(
|
||||||
boost::program_options::options_description & configurable_options
|
boost::program_options::options_description & configurable_options
|
||||||
|
@ -58,7 +58,7 @@ namespace daemonize
|
||||||
boost::program_options::variables_map const & vm
|
boost::program_options::variables_map const & vm
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
LOG_PRINT_L0("Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ") Daemonised");
|
LOG_PRINT_L0("Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ") Daemonised");
|
||||||
return t_daemon{vm};
|
return t_daemon{vm};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -118,7 +118,7 @@ int main(int argc, char const * argv[])
|
||||||
|
|
||||||
if (command_line::get_arg(vm, command_line::arg_help))
|
if (command_line::get_arg(vm, command_line::arg_help))
|
||||||
{
|
{
|
||||||
std::cout << "Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL << ENDL;
|
std::cout << "Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL << ENDL;
|
||||||
std::cout << "Usage: " + std::string{argv[0]} + " [options|settings] [daemon_command...]" << std::endl << std::endl;
|
std::cout << "Usage: " + std::string{argv[0]} + " [options|settings] [daemon_command...]" << std::endl << std::endl;
|
||||||
std::cout << visible_options << std::endl;
|
std::cout << visible_options << std::endl;
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -127,7 +127,7 @@ int main(int argc, char const * argv[])
|
||||||
// Monero Version
|
// Monero Version
|
||||||
if (command_line::get_arg(vm, command_line::arg_version))
|
if (command_line::get_arg(vm, command_line::arg_version))
|
||||||
{
|
{
|
||||||
std::cout << "Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL;
|
std::cout << "Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -277,7 +277,7 @@ int main(int argc, char const * argv[])
|
||||||
tools::set_max_concurrency(command_line::get_arg(vm, daemon_args::arg_max_concurrency));
|
tools::set_max_concurrency(command_line::get_arg(vm, daemon_args::arg_max_concurrency));
|
||||||
|
|
||||||
// logging is now set up
|
// logging is now set up
|
||||||
MGINFO("Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")");
|
MGINFO("Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")");
|
||||||
|
|
||||||
MINFO("Moving from main() into the daemonize now.");
|
MINFO("Moving from main() into the daemonize now.");
|
||||||
|
|
||||||
|
|
|
@ -93,7 +93,7 @@ int main(int argc, char* argv[])
|
||||||
|
|
||||||
if (command_line::get_arg(vm, command_line::arg_help))
|
if (command_line::get_arg(vm, command_line::arg_help))
|
||||||
{
|
{
|
||||||
std::cout << "Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL << ENDL;
|
std::cout << "Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL << ENDL;
|
||||||
std::cout << desc_options << std::endl;
|
std::cout << desc_options << std::endl;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,5 +50,5 @@ add_dependencies(gen_multisig
|
||||||
version)
|
version)
|
||||||
set_property(TARGET gen_multisig
|
set_property(TARGET gen_multisig
|
||||||
PROPERTY
|
PROPERTY
|
||||||
OUTPUT_NAME "monero-gen-trusted-multisig")
|
OUTPUT_NAME "wownero-gen-trusted-multisig")
|
||||||
install(TARGETS gen_multisig DESTINATION bin)
|
install(TARGETS gen_multisig DESTINATION bin)
|
||||||
|
|
|
@ -134,8 +134,8 @@ namespace wallet_args
|
||||||
|
|
||||||
if (command_line::get_arg(vm, command_line::arg_help))
|
if (command_line::get_arg(vm, command_line::arg_help))
|
||||||
{
|
{
|
||||||
Print(print) << "Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL;
|
Print(print) << "Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")" << ENDL;
|
||||||
Print(print) << wallet_args::tr("This is the command line monero wallet. It needs to connect to a monero\n"
|
Print(print) << wallet_args::tr("This is the command line wownero wallet. It needs to connect to a wownero\n"
|
||||||
"daemon to work correctly.") << ENDL;
|
"daemon to work correctly.") << ENDL;
|
||||||
Print(print) << wallet_args::tr("Usage:") << ENDL << " " << usage;
|
Print(print) << wallet_args::tr("Usage:") << ENDL << " " << usage;
|
||||||
Print(print) << desc_all;
|
Print(print) << desc_all;
|
||||||
|
@ -143,7 +143,7 @@ namespace wallet_args
|
||||||
}
|
}
|
||||||
else if (command_line::get_arg(vm, command_line::arg_version))
|
else if (command_line::get_arg(vm, command_line::arg_version))
|
||||||
{
|
{
|
||||||
Print(print) << "Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")";
|
Print(print) << "Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -186,7 +186,7 @@ namespace wallet_args
|
||||||
if (!command_line::is_arg_defaulted(vm, arg_max_concurrency))
|
if (!command_line::is_arg_defaulted(vm, arg_max_concurrency))
|
||||||
tools::set_max_concurrency(command_line::get_arg(vm, arg_max_concurrency));
|
tools::set_max_concurrency(command_line::get_arg(vm, arg_max_concurrency));
|
||||||
|
|
||||||
Print(print) << "Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")";
|
Print(print) << "Wownero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")";
|
||||||
|
|
||||||
if (!command_line::is_arg_defaulted(vm, arg_log_level))
|
if (!command_line::is_arg_defaulted(vm, arg_log_level))
|
||||||
MINFO("Setting log level = " << command_line::get_arg(vm, arg_log_level));
|
MINFO("Setting log level = " << command_line::get_arg(vm, arg_log_level));
|
||||||
|
|
Loading…
Reference in New Issue