diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-01-20 14:38:27 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-01-20 14:39:50 +0100 |
| commit | b8d1b81077e4d0efcf9aafc00954d6ecd3d72d31 (patch) | |
| tree | a22ce72cdd97c524378399868fa3686ad0445b30 /src/qt/test/rpcnestedtests.cpp | |
| parent | Merge #9377: fundrawtransaction: Keep change-output keys by default, make it ... (diff) | |
| download | discoin-b8d1b81077e4d0efcf9aafc00954d6ecd3d72d31.tar.xz discoin-b8d1b81077e4d0efcf9aafc00954d6ecd3d72d31.zip | |
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.
Diffstat (limited to 'src/qt/test/rpcnestedtests.cpp')
| -rw-r--r-- | src/qt/test/rpcnestedtests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/test/rpcnestedtests.cpp b/src/qt/test/rpcnestedtests.cpp index fbec5722b..bd496f149 100644 --- a/src/qt/test/rpcnestedtests.cpp +++ b/src/qt/test/rpcnestedtests.cpp @@ -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() |