diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-06-22 20:36:16 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-06-22 20:46:37 +0200 |
| commit | 6bef7ca8bc6a0894875eede7cbb2f28e77e91bd7 (patch) | |
| tree | 5b210133c46f235eb18c8a1983c2cfd1c49b470a /src/rest.cpp | |
| parent | Merge #10636: [qa] util: Check return code after closing bitcoind proc (diff) | |
| parent | Fixed multiple typos (diff) | |
| download | discoin-6bef7ca8bc6a0894875eede7cbb2f28e77e91bd7.tar.xz discoin-6bef7ca8bc6a0894875eede7cbb2f28e77e91bd7.zip | |
Merge #10633: doc: Fix various typos
0a5a6b9 Fixed multiple typos (Dimitris Tsapakidis)
Tree-SHA512: 57748710bcbc03945b160db5e95bd686a2c64605f25d5e11d8ed9d0e1be3b3bf287a63588dc6eb33d0cef4ff17c765fda7c226d667a357acc539c8fcf2b9bb7e
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 8fb0c13fa..33e3fb452 100644 --- a/src/rest.cpp +++ b/src/rest.cpp @@ -413,7 +413,7 @@ static bool rest_getutxos(HTTPRequest* req, const std::string& strURIPart) boost::split(uriParts, strUriParams, boost::is_any_of("/")); } - // throw exception in case of a empty request + // throw exception in case of an empty request std::string strRequestMutable = req->ReadBody(); if (strRequestMutable.length() == 0 && uriParts.size() == 0) return RESTERR(req, HTTP_BAD_REQUEST, "Error: empty request"); |