aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/mining.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-08-31 16:04:22 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2016-08-31 16:07:58 +0200
commit0c8875d23b37bca9e37e0c387ab5365d4e8758c5 (patch)
tree1f335e48b4ec2d8842d419efef58fab22e6d2f29 /src/rpc/mining.cpp
parentf25684300a722abc0a493b32a4f79bd6fbf996ae (diff)
parentde1bbe3b7876e311ebba5445b7b251782c0a7e0a (diff)
downloadbitcoin-0c8875d23b37bca9e37e0c387ab5365d4e8758c5.tar.xz
Merge #8163: Do not shadow global RPC table variable (tableRPC)
de1bbe3 Do not shadow global RPC table variable (tableRPC) (Pavel Janík)
Diffstat (limited to 'src/rpc/mining.cpp')
-rw-r--r--src/rpc/mining.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp
index a26340f3e4..14183c8e82 100644
--- a/src/rpc/mining.cpp
+++ b/src/rpc/mining.cpp
@@ -919,8 +919,8 @@ static const CRPCCommand commands[] =
{ "util", "estimatesmartpriority", &estimatesmartpriority, true },
};
-void RegisterMiningRPCCommands(CRPCTable &tableRPC)
+void RegisterMiningRPCCommands(CRPCTable &t)
{
for (unsigned int vcidx = 0; vcidx < ARRAYLEN(commands); vcidx++)
- tableRPC.appendCommand(commands[vcidx].name, &commands[vcidx]);
+ t.appendCommand(commands[vcidx].name, &commands[vcidx]);
}