aboutsummaryrefslogtreecommitdiff
path: root/src/rpcmining.cpp
diff options
context:
space:
mode:
authorJonas Schnelli <jonas.schnelli@include7.ch>2015-02-04 16:34:34 +0100
committerJonas Schnelli <jonas.schnelli@include7.ch>2015-02-04 16:34:34 +0100
commit17115d0a34ce5c370e45fb51560c02bee5339b11 (patch)
tree7dcfec4b6fd774630be21ce5739d969517703205 /src/rpcmining.cpp
parent93b7544501d6154f1d6530b670319d72754636ae (diff)
downloadbitcoin-17115d0a34ce5c370e45fb51560c02bee5339b11.tar.xz
fix getblocktemplate lock issue
getblocktemplate didn't have a wallet lock before #5711 and IMO there is no need for LEAVE/ENTER critical section.
Diffstat (limited to 'src/rpcmining.cpp')
-rw-r--r--src/rpcmining.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp
index 369b3fb4d7..8f2d34edff 100644
--- a/src/rpcmining.cpp
+++ b/src/rpcmining.cpp
@@ -446,10 +446,6 @@ Value getblocktemplate(const Array& params, bool fHelp)
}
// Release the wallet and main lock while waiting
-#ifdef ENABLE_WALLET
- if(pwalletMain)
- LEAVE_CRITICAL_SECTION(pwalletMain->cs_wallet);
-#endif
LEAVE_CRITICAL_SECTION(cs_main);
{
checktxtime = boost::get_system_time() + boost::posix_time::minutes(1);
@@ -467,10 +463,6 @@ Value getblocktemplate(const Array& params, bool fHelp)
}
}
ENTER_CRITICAL_SECTION(cs_main);
-#ifdef ENABLE_WALLET
- if(pwalletMain)
- ENTER_CRITICAL_SECTION(pwalletMain->cs_wallet);
-#endif
if (!IsRPCRunning())
throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Shutting down");