From 0cec24398f31378166b122e3953f0efc3070d781 Mon Sep 17 00:00:00 2001 From: jl777 Date: Sun, 29 Jul 2018 03:56:08 -1100 Subject: [PATCH] Test --- src/wallet/rpcwallet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index ae9c9b784..96d23447d 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -5095,7 +5095,7 @@ UniValue dicefund(const UniValue& params, bool fHelp) if ( ensure_CCrequirements() < 0 ) throw runtime_error("to use CC contracts, you need to launch daemon with valid -pubkey= for an address in your wallet\n"); funds = atof(params[0].get_str().c_str()) * COIN; - hex = DiceFund(0,funds); + //hex = DiceFund(0,funds); if ( hex.size() > 0 ) { result.push_back(Pair("result", "success")); @@ -5115,7 +5115,7 @@ UniValue dicebet(const UniValue& params, bool fHelp) if ( params.size() == 2 ) odds = atof(params[1].get_str().c_str()) * COIN; else odds = 1; - hex = DiceBet(0,amount,odds); + //hex = DiceBet(0,amount,odds); if ( hex.size() > 0 ) { result.push_back(Pair("result", "success"));