From 4aa7d9906c1cbdde06a1419e9f6cb310bf50961b Mon Sep 17 00:00:00 2001 From: kanoi Date: Fri, 8 Aug 2014 15:45:31 +1000 Subject: [PATCH] ckdb - missing space in blcoks insert --- src/ckdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ckdb.c b/src/ckdb.c index a82db3b6..01ceef9d 100644 --- a/src/ckdb.c +++ b/src/ckdb.c @@ -4157,7 +4157,7 @@ static bool blocks_add(PGconn *conn, char *height, char *blockhash, HISTORYDATECONTROL ") select " "height,blockhash,workinfoid,userid,workername," "clientid,enonce1,nonce2,nonce,reward,confirmed," - "$3,$4,$5,$6,$7 from blocks where" + "$3,$4,$5,$6,$7 from blocks where " "blockhash=$1 and expirydate=$2"; res = PQexecParams(conn, ins, par, NULL, (const char **)params, NULL, NULL, 0);