diff options
| author | John Newbery <[email protected]> | 2017-08-11 11:25:06 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2017-09-26 12:17:19 -0400 |
| commit | d4cdbd6fb6ac3663d069307c4fd0078f4ecf0245 (patch) | |
| tree | 2a3e1a54e474e79ab491c46205ca26fd84f91da4 /src/rpc/server.cpp | |
| parent | doc: add release-notes for 0.15.0 to master (diff) | |
| download | discoin-d4cdbd6fb6ac3663d069307c4fd0078f4ecf0245.tar.xz discoin-d4cdbd6fb6ac3663d069307c4fd0078f4ecf0245.zip | |
[rpc] Deprecate estimatefee RPC
Deprecate estimatefee in v0.16, for final removal in v0.17.
This commit introduces a phased removal of RPC methods. RPC method is
disabled by default in version x, but can be enabled by using the
`-deprecatedrpc=<method>` argument. RPC method is removed entirely in
version (x+1).
Diffstat (limited to 'src/rpc/server.cpp')
| -rw-r--r-- | src/rpc/server.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp index 428ab3b9b..a73b697e0 100644 --- a/src/rpc/server.cpp +++ b/src/rpc/server.cpp @@ -382,6 +382,13 @@ void JSONRPCRequest::parse(const UniValue& valRequest) throw JSONRPCError(RPC_INVALID_REQUEST, "Params must be an array or object"); } +bool IsDeprecatedRPCEnabled(const std::string& method) +{ + const std::vector<std::string> enabled_methods = gArgs.GetArgs("-deprecatedrpc"); + + return find(enabled_methods.begin(), enabled_methods.end(), method) != enabled_methods.end(); +} + static UniValue JSONRPCExecOne(const UniValue& req) { UniValue rpc_result(UniValue::VOBJ); |