rpc: don't include an address in mining_status when not mining
Best case is an address mined previously and it'll get returned, worst case it was never initialized in the first place
This commit is contained in:
parent
85014813cf
commit
495a7e5b97
|
@ -1004,7 +1004,8 @@ namespace cryptonote
|
|||
res.block_reward = lMiner.get_block_reward();
|
||||
}
|
||||
const account_public_address& lMiningAdr = lMiner.get_mining_address();
|
||||
res.address = get_account_address_as_str(nettype(), false, lMiningAdr);
|
||||
if (lMiner.is_mining() || lMiner.get_is_background_mining_enabled())
|
||||
res.address = get_account_address_as_str(nettype(), false, lMiningAdr);
|
||||
const uint8_t major_version = m_core.get_blockchain_storage().get_current_hard_fork_version();
|
||||
const unsigned variant = major_version >= 7 ? major_version - 6 : 0;
|
||||
switch (variant)
|
||||
|
|
Loading…
Reference in New Issue