diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-12-02 16:04:32 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-12-02 16:28:13 +0100 |
| commit | aeedd8a53b2df0ca2bf0429ce37f97cd45b35ba6 (patch) | |
| tree | dc61d3413311eb0977d1bf436f87b8650767f214 /src/rest.cpp | |
| parent | Merge pull request #7128 (diff) | |
| parent | Fix typo in wallet.cpp (diff) | |
| download | discoin-aeedd8a53b2df0ca2bf0429ce37f97cd45b35ba6.tar.xz discoin-aeedd8a53b2df0ca2bf0429ce37f97cd45b35ba6.zip | |
Merge pull request #7157
fabd10a Fix typo in wallet.cpp (MarcoFalke)
fad2460 Update contrib/devtools/README.md (MarcoFalke)
5e151a8 PartitionCheck: remove useless spaces (paveljanik)
fad0088 TRIVIAL: Chainparams: Remove unused CBaseUnitTestParams (Jorge Timón)
74f7341 Update miner.cpp: Fix typo in comment (antonio-fr)
e69bad1 [trivial] Fix typo in peertablemodel.cpp (MarcoFalke)
8a03727 Fix various typos (paveljanik)
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 5d69542a9..2ad7bc106 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; |