aboutsummaryrefslogtreecommitdiff
path: root/src/rest.cpp
diff options
context:
space:
mode:
authorChris Abrams <[email protected]>2020-04-28 20:17:03 -0500
committerChris Abrams <[email protected]>2020-04-28 20:17:03 -0500
commitff6549c3c84ca7324032dbc37744645bf2fe1c3e (patch)
treeca6f0a4ad67007252bcf6cbb6f0f6826b6f20286 /src/rest.cpp
parentMerge #18805: tests: Add missing sync_all to wallet_importdescriptors.py (diff)
downloaddiscoin-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.cpp2
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)");
}
}
}