From d253a97e793f5d2391ec469b18f49d80939c322f Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sat, 2 Aug 2014 15:59:07 +1000 Subject: [PATCH] Fix null txn hashes being passed to ckdb in proxy mode --- src/stratifier.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stratifier.c b/src/stratifier.c index 14d7cb85..19074635 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -712,6 +712,7 @@ static void update_notify(ckpool_t *ckp) workpadding); LOGDEBUG("Header: %s", header); hex2bin(wb->headerbin, header, 112); + wb->txn_hashes = ckzalloc(1); ck_rlock(&workbase_lock); strcpy(wb->enonce1const, proxy_base.enonce1);