mirror of
https://github.com/monero-project/monero.git
synced 2025-05-10 21:54:59 -04:00
Merge pull request #3277
0e7ad2e2
Wallet API: generalize 'bool testnet' to 'NetworkType nettype' (stoffu)af773211
Stagenet (stoffu)cc9a0bee
command_line: allow args to depend on more than one args (stoffu)55f8d917
command_line::get_arg: remove 'required' for dependent args as they're always optional (stoffu)450306a0
command line: allow has_arg to handle arg_descriptor<bool,false,true> #3318 (stoffu)9f9e095a
Use `genesis_tx` parameter in `generate_genesis_block`. #3261 (Jean Pierre Dudey)
This commit is contained in:
commit
4f93f74528
63 changed files with 726 additions and 417 deletions
|
@ -218,7 +218,7 @@ namespace cryptonote
|
|||
command_line::add_arg(desc, arg_bg_mining_miner_target_percentage);
|
||||
}
|
||||
//-----------------------------------------------------------------------------------------------------
|
||||
bool miner::init(const boost::program_options::variables_map& vm, bool testnet)
|
||||
bool miner::init(const boost::program_options::variables_map& vm, network_type nettype)
|
||||
{
|
||||
if(command_line::has_arg(vm, arg_extra_messages))
|
||||
{
|
||||
|
@ -246,7 +246,7 @@ namespace cryptonote
|
|||
if(command_line::has_arg(vm, arg_start_mining))
|
||||
{
|
||||
address_parse_info info;
|
||||
if(!cryptonote::get_account_address_from_str(info, testnet, command_line::get_arg(vm, arg_start_mining)) || info.is_subaddress)
|
||||
if(!cryptonote::get_account_address_from_str(info, nettype, command_line::get_arg(vm, arg_start_mining)) || info.is_subaddress)
|
||||
{
|
||||
LOG_ERROR("Target account address " << command_line::get_arg(vm, arg_start_mining) << " has wrong format, starting daemon canceled");
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue