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:
Wladimir J. van der Laan 2017-01-20 14:38:27 +01:00
parent fb75cd04bb
commit b8d1b81077
No known key found for this signature in database
GPG key ID: 74810B012346C9A6

View file

@ -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()