| 487 | } |
| 488 | |
| 489 | std::vector<std::string> CRPCTable::listCommands() const |
| 490 | { |
| 491 | std::vector<std::string> commandList; |
| 492 | for (const auto& i : mapCommands) commandList.emplace_back(i.first); |
| 493 | return commandList; |
| 494 | } |
| 495 | |
| 496 | UniValue CRPCTable::dumpArgMap(const JSONRPCRequest& args_request) const |
| 497 | { |