diff options
| author | practicalswift <[email protected]> | 2018-07-27 08:22:42 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-07-27 13:19:03 +0200 |
| commit | d78a8dc3e82564ca8e56b81f9f21af9295b013dd (patch) | |
| tree | 9092fdf9c11cc633313b6c33e0882d361dab7f5c /src/httpserver.h | |
| parent | Merge #13423: [net] Thread safety annotations in net_processing (diff) | |
| download | discoin-d78a8dc3e82564ca8e56b81f9f21af9295b013dd.tar.xz discoin-d78a8dc3e82564ca8e56b81f9f21af9295b013dd.zip | |
Return void instead of bool for functions that cannot fail
* CBlockTreeDB::ReadReindexing(...)
* CChainState::ResetBlockFailureFlags(...)
* CTxMemPool::addUnchecked(...)
* CWallet::LoadDestData(...)
* CWallet::LoadKeyMetadata(...)
* CWallet::LoadScriptMetadata(...)
* CWallet::LoadToWallet(...)
* CWallet::SetHDChain(...)
* CWallet::SetHDSeed(...)
* RemoveLocal(...)
* SetMinVersion(...)
* StartHTTPServer(...)
* StartRPC(...)
* TorControlConnection::Disconnect(...)
Diffstat (limited to 'src/httpserver.h')
| -rw-r--r-- | src/httpserver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httpserver.h b/src/httpserver.h index 8132c887b..8a3adaf91 100644 --- a/src/httpserver.h +++ b/src/httpserver.h @@ -26,7 +26,7 @@ bool InitHTTPServer(); * This is separate from InitHTTPServer to give users race-condition-free time * to register their handlers between InitHTTPServer and StartHTTPServer. */ -bool StartHTTPServer(); +void StartHTTPServer(); /** Interrupt HTTP server threads */ void InterruptHTTPServer(); /** Stop HTTP server */ |