trivial: squash missing field 'argNames' initializer warning in qt tests
The additional initializer is for the named arguments, which are unused in the test (and unfilled global fields will be initialized to 0 anyhow), so this is a no-op apart from the warning.
This commit is contained in:
parent
fb75cd04bb
commit
b8d1b81077
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ static UniValue rpcNestedTest_rpc(const JSONRPCRequest& request)
|
|||
|
||||
static const CRPCCommand vRPCCommands[] =
|
||||
{
|
||||
{ "test", "rpcNestedTest", &rpcNestedTest_rpc, true },
|
||||
{ "test", "rpcNestedTest", &rpcNestedTest_rpc, true, {} },
|
||||
};
|
||||
|
||||
void RPCNestedTests::rpcNestedTests()
|
||||
|
|
Loading…
Reference in a new issue