From 260c79c3cc05455f525e9891b725f240e65f208f Mon Sep 17 00:00:00 2001 From: jl777 Date: Tue, 31 Jul 2018 05:33:02 -1100 Subject: [PATCH] Fix --- src/cc/dice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc/dice.cpp b/src/cc/dice.cpp index d5756990f..68ef87362 100644 --- a/src/cc/dice.cpp +++ b/src/cc/dice.cpp @@ -128,7 +128,7 @@ void *dicefinish(void *_ptr) if ( duplicate == 0 ) { res = DiceWinLoseTimeout(0,name,ptr->fundingtxid,ptr->bettxid,ptr->iswin); - if ( res != 0 && res.size() > 64 && is_hexstr((char *)res.c_str(),0) > 64 ) + if ( res.size() > 64 && is_hexstr((char *)res.c_str(),0) > 64 ) { CTransaction tx; uint256 txid; char str[65]; LOCK(cs_main);