is_coinbase bug fixed

use_xmregcore
moneroexamples 5 years ago
parent e34fee1068
commit fb20cb2179

@ -831,7 +831,7 @@ CurrentBlockchainStatus::get_searched_blk_no(const string& address,
if (!search_thread_exist(address))
{
// thread does not exist
OMERROR << "thread for " << address << " does not exist";
OMERROR << "thread for " << address.substr(0,6) << " does not exist";
return false;
}
@ -850,7 +850,7 @@ CurrentBlockchainStatus::get_known_outputs_keys(
if (!search_thread_exist(address))
{
// thread does not exist
OMERROR << "thread for " << address << " does not exist";
OMERROR << "thread for " << address.substr(0,6) << " does not exist";
return false;
}
@ -881,7 +881,8 @@ CurrentBlockchainStatus::get_xmr_address_viewkey(
if (!search_thread_exist(address_str))
{
// thread does not exist
OMERROR << "thread for " << address_str << " does not exist";
OMERROR << "thread for " << address_str.substr(0,6)
<< " does not exist";
return false;
}
@ -903,7 +904,8 @@ CurrentBlockchainStatus::find_txs_in_mempool(
if (searching_threads.count(address_str) == 0)
{
// thread does not exist
OMERROR << "thread for " << address_str << " does not exist";
OMERROR << "thread for "
<< address_str.substr(0,6) << " does not exist";
return false;
}

File diff suppressed because it is too large Load Diff

@ -1 +1 @@
Subproject commit 96d82080fc2756da0cd274982c373c8fbb14261f
Subproject commit 9b050883c60f79a8465a2a711993c61531b2cfe8
Loading…
Cancel
Save