forked from lthn/blockchain
fixed another tests-breaking issue
This commit is contained in:
parent
960daaca23
commit
20bc2fdf00
2 changed files with 9 additions and 1 deletions
|
|
@ -155,6 +155,13 @@ namespace net_utils
|
|||
{
|
||||
content.port = boost::lexical_cast<uint64_t>(result[6]);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (content.schema == "http")
|
||||
content.port = 80;
|
||||
else if (content.schema == "https")
|
||||
content.port = 443;
|
||||
}
|
||||
if(result[7].matched)
|
||||
{
|
||||
content.uri = result[7];
|
||||
|
|
|
|||
|
|
@ -3158,7 +3158,8 @@ bool wallet2::delete_custom_asset_id(const crypto::hash& asset_id)
|
|||
//----------------------------------------------------------------------------------------------------
|
||||
bool wallet2::load_whitelisted_tokens_list()
|
||||
{
|
||||
|
||||
epee::net_utils::http::https_simple_client https_client;
|
||||
return true;
|
||||
}
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
void wallet2::get_transfers(wallet2::transfer_container& incoming_transfers) const
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue