aboutsummaryrefslogtreecommitdiff
path: root/src/rest.cpp
diff options
context:
space:
mode:
authorChris Abrams <mail@chrisabrams.com>2020-04-28 20:17:03 -0500
committerChris Abrams <mail@chrisabrams.com>2020-04-28 20:17:03 -0500
commitff6549c3c84ca7324032dbc37744645bf2fe1c3e (patch)
treeca6f0a4ad67007252bcf6cbb6f0f6826b6f20286 /src/rest.cpp
parentba348dbc518b8e082a5dc3a225432fdacf859a13 (diff)
downloadbitcoin-ff6549c3c84ca7324032dbc37744645bf2fe1c3e.tar.xz
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 0629557584..b389bf2028 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)");
}
}
}