From 2da54f5a66f91306c064d685bffcee2062b6ebd2 Mon Sep 17 00:00:00 2001 From: DesWurstes Date: Fri, 10 Aug 2018 18:04:42 +0300 Subject: Cleanup StartRest() --- src/httprpc.h | 2 +- src/init.cpp | 3 +-- src/rest.cpp | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/httprpc.h b/src/httprpc.h index 193f8d617a..2230a8ca4e 100644 --- a/src/httprpc.h +++ b/src/httprpc.h @@ -23,7 +23,7 @@ void StopHTTPRPC(); /** Start HTTP REST subsystem. * Precondition; HTTP and RPC has been started. */ -bool StartREST(); +void StartREST(); /** Interrupt RPC REST subsystem. */ void InterruptREST(); diff --git a/src/init.cpp b/src/init.cpp index 5c29736913..482107c06f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -736,8 +736,7 @@ static bool AppInitServers() StartRPC(); if (!StartHTTPRPC()) return false; - if (gArgs.GetBoolArg("-rest", DEFAULT_REST_ENABLE) && !StartREST()) - return false; + if (gArgs.GetBoolArg("-rest", DEFAULT_REST_ENABLE)) StartREST(); StartHTTPServer(); return true; } diff --git a/src/rest.cpp b/src/rest.cpp index b81a6f9c5f..12358cf50d 100644 --- a/src/rest.cpp +++ b/src/rest.cpp @@ -591,11 +591,10 @@ static const struct { {"/rest/getutxos", rest_getutxos}, }; -bool StartREST() +void StartREST() { for (unsigned int i = 0; i < ARRAYLEN(uri_prefixes); i++) RegisterHTTPHandler(uri_prefixes[i].prefix, false, uri_prefixes[i].handler); - return true; } void InterruptREST() -- cgit v1.2.3