diff options
| author | Luke Dashjr <[email protected]> | 2016-10-25 08:04:23 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2017-02-27 20:45:18 +0000 |
| commit | bf8a04a165e1c19dffce70a7e5c3fb10b0035d96 (patch) | |
| tree | 05a869abf04d768c9f31c6bbe98345613166ab28 /src/rpc/rawtransaction.cpp | |
| parent | Move nWalletUnlockTime to CWallet::nRelockTime, and name timed task unique pe... (diff) | |
| download | discoin-bf8a04a165e1c19dffce70a7e5c3fb10b0035d96.tar.xz discoin-bf8a04a165e1c19dffce70a7e5c3fb10b0035d96.zip | |
Reformat touched lines with C++11
Diffstat (limited to 'src/rpc/rawtransaction.cpp')
| -rw-r--r-- | src/rpc/rawtransaction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 5c75fecac..ce7afcbe5 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -721,8 +721,9 @@ UniValue signrawtransaction(const JSONRPCRequest& request) } } #ifdef ENABLE_WALLET - else if (pwallet) + else if (pwallet) { EnsureWalletIsUnlocked(pwallet); + } #endif // Add previous txouts given in the RPC call: |