Preserve a format of RPC command definitions

Currently RPC commands are formatted in a way that it's easy to read
and that test/lint/check-rpc-mappings.py can parse it.

To void breaking test/lint/check-rpc-mappings.py script by running
clang-format, RPC command definitions should be disabled for clang-format.
This commit is contained in:
Kostiantyn Stepaniuk
2018-08-20 14:19:43 +02:00
parent 2a583406c0
commit d9d79576f4
9 changed files with 18 additions and 2 deletions

View File

@@ -255,6 +255,7 @@ static UniValue uptime(const JSONRPCRequest& jsonRequest)
return GetTime() - GetStartupTime();
}
// clang-format off
/**
* Call Table
*/
@@ -266,6 +267,7 @@ static const CRPCCommand vRPCCommands[] =
{ "control", "stop", &stop, {} },
{ "control", "uptime", &uptime, {} },
};
// clang-format on
CRPCTable::CRPCTable()
{