diff options
Diffstat (limited to 'src/rest.cpp')
-rw-r--r-- | src/rest.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
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() |