Implemented Monero v1 pow changes

* Adds arm implementation and test code for single hash
* Fixed build break for when APP_DEBUG is set
* Applied new icons / design
This commit is contained in:
sebastianstolzenberg 2018-03-13 20:19:20 +01:00 committed by Ben Gräf
parent 9098c4936a
commit 75952e0eb4
9 changed files with 317 additions and 19 deletions

View file

@ -230,7 +230,7 @@ bool Client::parseLogin(const rapidjson::Value &result, int *code)
int64_t Client::send(size_t size)
{
LOG_DEBUG("[%s:%u] send (%d bytes): \"%s\"", m_url.host(), m_url.port(), size, buf);
LOG_DEBUG("[%s:%u] send (%d bytes): \"%s\"", m_url.host(), m_url.port(), size, m_sendBuf);
if (!m_net) {
LOG_DEBUG_ERR("[%s:%u] send failed", m_url.host(), m_url.port());
return -1;