diff options
author | freewil <sean@eternalrise.com> | 2013-03-07 06:18:55 -0500 |
---|---|---|
committer | freewil <sean@eternalrise.com> | 2013-03-07 06:18:55 -0500 |
commit | 10ef3611697cdf867730689f6968ba48adc4d6e2 (patch) | |
tree | db46070378b72c9ef8f673a19cd690a94eebe0d1 /src/bitcoinrpc.h | |
parent | dcf8b8fd9e9fc964eda083ee82e46df58958f705 (diff) |
CRPCCommand.unlocked -> CRPCCommand.threadSafe
unlocked could be confused with wallet encryption
Diffstat (limited to 'src/bitcoinrpc.h')
-rw-r--r-- | src/bitcoinrpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoinrpc.h b/src/bitcoinrpc.h index 36bfbe3eef..6a3554aea6 100644 --- a/src/bitcoinrpc.h +++ b/src/bitcoinrpc.h @@ -95,7 +95,7 @@ public: std::string name; rpcfn_type actor; bool okSafeMode; - bool unlocked; + bool threadSafe; }; /** |