mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 13:13:27 +01:00
Avoid unnecessary 'Invalid hashing blob' error message
This commit is contained in:
parent
eec3a6014c
commit
a02b342347
@ -306,7 +306,12 @@ boost::optional<std::string> NodeRPCProxy::get_rpc_payment_info(bool mining, boo
|
|||||||
m_rpc_payment_seed_height = resp_t.seed_height;
|
m_rpc_payment_seed_height = resp_t.seed_height;
|
||||||
m_rpc_payment_cookie = resp_t.cookie;
|
m_rpc_payment_cookie = resp_t.cookie;
|
||||||
|
|
||||||
if (!epee::string_tools::parse_hexstr_to_binbuff(resp_t.hashing_blob, m_rpc_payment_blob) || m_rpc_payment_blob.size() < 43)
|
if (m_rpc_payment_diff == 0)
|
||||||
|
{
|
||||||
|
// If no payment required daemon doesn't give us back a hashing blob
|
||||||
|
m_rpc_payment_blob.clear();
|
||||||
|
}
|
||||||
|
else if (!epee::string_tools::parse_hexstr_to_binbuff(resp_t.hashing_blob, m_rpc_payment_blob) || m_rpc_payment_blob.size() < 43)
|
||||||
{
|
{
|
||||||
MERROR("Invalid hashing blob: " << resp_t.hashing_blob);
|
MERROR("Invalid hashing blob: " << resp_t.hashing_blob);
|
||||||
return std::string("Invalid hashing blob");
|
return std::string("Invalid hashing blob");
|
||||||
|
Loading…
Reference in New Issue
Block a user