From 0cc5c16676af6dd418508c214d2d0ca650cbadba Mon Sep 17 00:00:00 2001 From: jl777 Date: Thu, 8 Nov 2018 03:42:16 -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 500621b6f..877430a81 100644 --- a/src/cc/dice.cpp +++ b/src/cc/dice.cpp @@ -299,7 +299,7 @@ int32_t dice_betspent(char *debugstr,uint256 bettxid) { if ( myIsutxo_spentinmempool(bettxid,0) != 0 || myIsutxo_spentinmempool(bettxid,1) != 0 ) { - fprintf(stderr,"%s bettxid.%s already spent in mempool\n",debugstr,txid.GetHex().c_str()); + fprintf(stderr,"%s bettxid.%s already spent in mempool\n",debugstr,bettxid.GetHex().c_str()); return(-1); } }