aboutsummaryrefslogtreecommitdiff
path: root/src/rest.cpp
diff options
context:
space:
mode:
authorpaveljanik <Pavel@Janik.cz>2015-07-03 16:36:49 +0200
committerMarcoFalke <falke.marco@gmail.com>2015-12-02 15:18:22 +0100
commit8a03727d9cc975a3d0843d83ef05957b9e9fbbca (patch)
treed51cedc6720235014a184cba8e230fb11f18b8e9 /src/rest.cpp
parentdf2ced5c8325b84557f185b687e6c014de84cecf (diff)
downloadbitcoin-8a03727d9cc975a3d0843d83ef05957b9e9fbbca.tar.xz
Fix various typos
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 5d69542a91..2ad7bc1065 100644
--- a/src/rest.cpp
+++ b/src/rest.cpp
@@ -494,7 +494,7 @@ static bool rest_getutxos(HTTPRequest* req, const std::string& strURIPart)
if (vOutPoints.size() > MAX_GETUTXOS_OUTPOINTS)
return RESTERR(req, HTTP_INTERNAL_SERVER_ERROR, strprintf("Error: max outpoints exceeded (max: %d, tried: %d)", MAX_GETUTXOS_OUTPOINTS, vOutPoints.size()));
- // check spentness and form a bitmap (as well as a JSON capable human-readble string representation)
+ // check spentness and form a bitmap (as well as a JSON capable human-readable string representation)
vector<unsigned char> bitmap;
vector<CCoin> outs;
std::string bitmapStringRepresentation;