diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2012-08-21 12:03:52 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-08-21 12:03:52 -0400 |
commit | 0e1d3551da570655d141d4b6d0b1bdbc0e931dbb (patch) | |
tree | 524b528c35dea69018fb3bacad093bb39f769e67 /src/bitcoinrpc.h | |
parent | 5f2b41d54d2adbbbb951291cf8fdcef8a77a543d (diff) |
RPC: add facility to enable RPCs to run outside cs_main, wallet locks
Use with 'stop' and 'help' RPCs.
This provides a facility to individually evaluate the locking for an RPC, and
potentially make it more parallel.
Diffstat (limited to 'src/bitcoinrpc.h')
-rw-r--r-- | src/bitcoinrpc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bitcoinrpc.h b/src/bitcoinrpc.h index 4abda7eda6..f70216392d 100644 --- a/src/bitcoinrpc.h +++ b/src/bitcoinrpc.h @@ -46,6 +46,7 @@ public: std::string name; rpcfn_type actor; bool okSafeMode; + bool unlocked; }; /** |