Correct hashes in logs for pending blocks (#583)
This commit is contained in:
parent
639d132c98
commit
5bb9a34356
1 changed files with 2 additions and 2 deletions
|
@ -1104,7 +1104,7 @@ public:
|
|||
rai::account_info info;
|
||||
auto error (wallet->node.store.account_get (transaction, pending.source, info));
|
||||
assert (!error);
|
||||
BOOST_LOG (wallet->node.log) << boost::str (boost::format ("Found a pending block %1% from account %2% with head %3%") % pending.source.to_string () % pending.source.to_account () % info.head.to_string ());
|
||||
BOOST_LOG (wallet->node.log) << boost::str (boost::format ("Found a pending block %1% from account %2% with head %3%") % key.hash.to_string () % pending.source.to_account () % info.head.to_string ());
|
||||
auto account (pending.source);
|
||||
if (already_searched.find (account) == already_searched.end ())
|
||||
{
|
||||
|
@ -1123,7 +1123,7 @@ public:
|
|||
}
|
||||
else
|
||||
{
|
||||
BOOST_LOG (wallet->node.log) << boost::str (boost::format ("Not receiving block %1% due to minimum receive threshold") % pending.source.to_string ());
|
||||
BOOST_LOG (wallet->node.log) << boost::str (boost::format ("Not receiving block %1% due to minimum receive threshold") % key.hash.to_string ());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue