diff options
| author | Jonas Schnelli <[email protected]> | 2014-12-01 12:38:42 +0100 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-04-21 20:26:49 +0200 |
| commit | 97ee8665497c78aff2f30c2f652b7afd376b5323 (patch) | |
| tree | cd3c73c54ec6e513d53a101d6f731eaea1b2a2ea /src/rpcserver.cpp | |
| parent | Merge pull request #5911 (diff) | |
| download | discoin-97ee8665497c78aff2f30c2f652b7afd376b5323.tar.xz discoin-97ee8665497c78aff2f30c2f652b7afd376b5323.zip | |
[REST] getutxos REST command (based on Bip64)
has parts of @mhearn #4351
* allows querying the utxos over REST
* same binary input and outputs as mentioned in Bip64
* input format = output format
* various rpc/rest regtests
Diffstat (limited to 'src/rpcserver.cpp')
| -rw-r--r-- | src/rpcserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index e2df41fe2..254eea833 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -992,7 +992,7 @@ void ServiceConnection(AcceptedConnection *conn) // Process via HTTP REST API } else if (strURI.substr(0, 6) == "/rest/" && GetBoolArg("-rest", false)) { - if (!HTTPReq_REST(conn, strURI, mapHeaders, fRun)) + if (!HTTPReq_REST(conn, strURI, strRequest, mapHeaders, fRun)) break; } else { |