fixed circulating supply calculation; more rebranding; bumped version number to v0.3.0
This commit is contained in:
@@ -487,7 +487,7 @@ bool message_store::get_signer_index_by_monero_address(const cryptonote::account
|
||||
return true;
|
||||
}
|
||||
}
|
||||
MWARNING("No authorized signer with Monero address " << account_address_to_string(monero_address));
|
||||
MWARNING("No authorized signer with Salvium address " << account_address_to_string(monero_address));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@@ -2349,6 +2349,7 @@ bool wallet2::get_yield_info(std::vector<cryptonote::yield_block_info>& ybi_data
|
||||
cryptonote::COMMAND_RPC_GET_YIELD_INFO::request req = AUTO_VAL_INIT(req);
|
||||
cryptonote::COMMAND_RPC_GET_YIELD_INFO::response res = AUTO_VAL_INIT(res);
|
||||
m_daemon_rpc_mutex.lock();
|
||||
req.include_raw_data = true;
|
||||
bool r = invoke_http_json_rpc("/json_rpc", "get_yield_info", req, res, rpc_timeout);
|
||||
m_daemon_rpc_mutex.unlock();
|
||||
if (r && res.status == CORE_RPC_STATUS_OK)
|
||||
|
||||
@@ -914,7 +914,7 @@ namespace tools
|
||||
}
|
||||
if (addresses.empty())
|
||||
{
|
||||
er.message = std::string("No Monero address found at ") + url;
|
||||
er.message = std::string("No Salvium address found at ") + url;
|
||||
return {};
|
||||
}
|
||||
return addresses[0];
|
||||
@@ -2223,7 +2223,7 @@ namespace tools
|
||||
}
|
||||
if (addresses.empty())
|
||||
{
|
||||
er.message = std::string("No Monero address found at ") + url;
|
||||
er.message = std::string("No Salvium address found at ") + url;
|
||||
return {};
|
||||
}
|
||||
return addresses[0];
|
||||
@@ -3041,7 +3041,7 @@ namespace tools
|
||||
}
|
||||
if (addresses.empty())
|
||||
{
|
||||
er.message = std::string("No Monero address found at ") + url;
|
||||
er.message = std::string("No Salvium address found at ") + url;
|
||||
return {};
|
||||
}
|
||||
return addresses[0];
|
||||
@@ -3095,7 +3095,7 @@ namespace tools
|
||||
}
|
||||
if (addresses.empty())
|
||||
{
|
||||
er.message = std::string("No Monero address found at ") + url;
|
||||
er.message = std::string("No Salvium address found at ") + url;
|
||||
return {};
|
||||
}
|
||||
return addresses[0];
|
||||
@@ -4403,7 +4403,7 @@ namespace tools
|
||||
}
|
||||
if (addresses.empty())
|
||||
{
|
||||
er.message = std::string("No Monero address found at ") + url;
|
||||
er.message = std::string("No Salvium address found at ") + url;
|
||||
return {};
|
||||
}
|
||||
address = addresses[0];
|
||||
|
||||
Reference in New Issue
Block a user