fixup removal

This commit is contained in:
Konstantin Akimov 2024-12-12 19:19:12 +07:00
parent a8798c8662
commit c2817106c6
No known key found for this signature in database
GPG Key ID: 2176C4A5D01EA524

View File

@ -561,7 +561,7 @@ UniValue CRPCTable::dumpArgMap(const JSONRPCRequest& args_request) const
// TODO: implement mapping argument to type for composite commands // TODO: implement mapping argument to type for composite commands
if (cmd.first.find(' ') != std::string::npos) continue; if (cmd.first.find(' ') != std::string::npos) continue;
UniValue result; UniValue result;
if (ExecuteCommands(cmd.second, request, result, mapPlatformRestrictions)) { if (ExecuteCommands(cmd.second, request, result)) {
for (const auto& values : result.getValues()) { for (const auto& values : result.getValues()) {
ret.push_back(values); ret.push_back(values);
} }