Browse Source

Omit std:: where not needed

cl-refactor
Lefteris Karapetsas 9 years ago
parent
commit
23f3deb7c7
  1. 4
      libweb3jsonrpc/WebThreeStubServerBase.cpp

4
libweb3jsonrpc/WebThreeStubServerBase.cpp

@ -780,9 +780,9 @@ bool WebThreeStubServerBase::eth_submitWork(string const& _nonce, string const&,
}
}
bool WebThreeStubServerBase::eth_submitHashrate(std::string const& _hashes, string const& _id)
bool WebThreeStubServerBase::eth_submitHashrate(string const& _hashes, string const& _id)
{
client()->submitExternalHashrate(std::stoi(_hashes, nullptr, 0), jsToFixed<32>(_id));
client()->submitExternalHashrate(stoi(_hashes, nullptr, 0), jsToFixed<32>(_id));
return true;
}

Loading…
Cancel
Save