aboutsummaryrefslogtreecommitdiff
path: root/src/rpcserver.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-01-23 08:44:20 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-01-23 08:44:31 +0100
commit8b2cf12b538fdf062b79c03f76626b541bfb66b7 (patch)
tree7633d39d066303f966211aa2384460f1e759d4e8 /src/rpcserver.h
parent6746787a0cd2eb3fcc7426f7f5275783228e7a45 (diff)
parenta8db31c83d6a43e07f741f7f61b1bf0df87621c7 (diff)
downloadbitcoin-8b2cf12b538fdf062b79c03f76626b541bfb66b7.tar.xz
Merge pull request #3553
a8db31c qt: allow `walletpassphrase` in debug console without -server (Wladimir J. van der Laan)
Diffstat (limited to 'src/rpcserver.h')
-rw-r--r--src/rpcserver.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/rpcserver.h b/src/rpcserver.h
index 9087be9e88..9008c32810 100644
--- a/src/rpcserver.h
+++ b/src/rpcserver.h
@@ -20,7 +20,14 @@
class CBlockIndex;
+/* Start RPC threads */
void StartRPCThreads();
+/* Alternative to StartRPCThreads for the GUI, when no server is
+ * used. The RPC thread in this case is only used to handle timeouts.
+ * If real RPC threads have already been started this is a no-op.
+ */
+void StartDummyRPCThread();
+/* Stop RPC threads */
void StopRPCThreads();
/*