diff options
| author | Chris Abrams <[email protected]> | 2020-04-28 20:17:03 -0500 |
|---|---|---|
| committer | Chris Abrams <[email protected]> | 2020-04-28 20:17:03 -0500 |
| commit | ff6549c3c84ca7324032dbc37744645bf2fe1c3e (patch) | |
| tree | ca6f0a4ad67007252bcf6cbb6f0f6826b6f20286 /src/rest.cpp | |
| parent | Merge #18805: tests: Add missing sync_all to wallet_importdescriptors.py (diff) | |
| download | discoin-ff6549c3c84ca7324032dbc37744645bf2fe1c3e.tar.xz discoin-ff6549c3c84ca7324032dbc37744645bf2fe1c3e.zip | |
fix: update rest info on block size and json
Diffstat (limited to 'src/rest.cpp')
| -rw-r--r-- | src/rest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rest.cpp b/src/rest.cpp index 062955758..b389bf202 100644 --- a/src/rest.cpp +++ b/src/rest.cpp @@ -206,7 +206,7 @@ static bool rest_headers(HTTPRequest* req, return true; } default: { - return RESTERR(req, HTTP_NOT_FOUND, "output format not found (available: .bin, .hex)"); + return RESTERR(req, HTTP_NOT_FOUND, "output format not found (available: .bin, .hex, .json)"); } } } |