From 27db9f401c4c490f2c85cf4ddd4754baa133f545 Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 23 Jul 2018 03:55:00 -1100 Subject: [PATCH] Test --- src/cc/eval.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cc/eval.cpp b/src/cc/eval.cpp index 97bb89402..401d12e3e 100644 --- a/src/cc/eval.cpp +++ b/src/cc/eval.cpp @@ -90,8 +90,8 @@ bool Eval::GetTxUnconfirmed(const uint256 &hash, CTransaction &txOut, uint256 &h { bool myGetTransaction(const uint256 &hash, CTransaction &txOut, uint256 &hashBlock); // there is a LOCK(cs_main) in the normal GetTransaction(), which leads to deadlocks - //bool fAllowSlow = false; // Don't allow slow - //return GetTransaction(hash, txOut, hashBlock, fAllowSlow); + bool fAllowSlow = false; // Don't allow slow + return GetTransaction(hash, txOut, hashBlock, fAllowSlow); return myGetTransaction(hash, txOut,hashBlock); }