Skip to content

Commit

Permalink
fixup removal
Browse files Browse the repository at this point in the history
  • Loading branch information
knst committed Dec 12, 2024
1 parent a8798c8 commit c281710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpc/server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ UniValue CRPCTable::dumpArgMap(const JSONRPCRequest& args_request) const
// TODO: implement mapping argument to type for composite commands
if (cmd.first.find(' ') != std::string::npos) continue;
UniValue result;
if (ExecuteCommands(cmd.second, request, result, mapPlatformRestrictions)) {
if (ExecuteCommands(cmd.second, request, result)) {
for (const auto& values : result.getValues()) {
ret.push_back(values);
}
Expand Down

0 comments on commit c281710

Please sign in to comment.