mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-11 07:17:58 +00:00
RPC call debugging is a mess with \r in it so remove it.
This commit is contained in:
parent
59b640870c
commit
37115c0e1b
7
main.c
7
main.c
@ -951,7 +951,7 @@ static bool submit_upstream_work(const struct work *work)
|
||||
{
|
||||
char *hexstr = NULL;
|
||||
json_t *val, *res;
|
||||
char s[345];
|
||||
char s[345], sd[345];
|
||||
bool rc = false;
|
||||
int thr_id = work->thr_id;
|
||||
struct cgpu_info *cgpu = thr_info[thr_id].cgpu;
|
||||
@ -974,9 +974,12 @@ static bool submit_upstream_work(const struct work *work)
|
||||
sprintf(s,
|
||||
"{\"method\": \"getwork\", \"params\": [ \"%s\" ], \"id\":1}\r\n",
|
||||
hexstr);
|
||||
sprintf(sd,
|
||||
"{\"method\": \"getwork\", \"params\": [ \"%s\" ], \"id\":1}",
|
||||
hexstr);
|
||||
|
||||
if (opt_debug)
|
||||
applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, s);
|
||||
applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
|
||||
|
||||
/* issue JSON-RPC request */
|
||||
val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, s, false, false, pool);
|
||||
|
Loading…
Reference in New Issue
Block a user