diff options
| author | Pavel Janík <[email protected]> | 2016-06-07 18:42:42 +0200 |
|---|---|---|
| committer | Pavel Janík <[email protected]> | 2016-08-25 15:02:26 +0200 |
| commit | de1bbe3b7876e311ebba5445b7b251782c0a7e0a (patch) | |
| tree | c4908b0d4f507b82a4bd3c881ef0da1a8ba057f2 /src/wallet/rpcwallet.h | |
| parent | Merge #8128: Net: Turn net structures into dumb storage classes (diff) | |
| download | discoin-de1bbe3b7876e311ebba5445b7b251782c0a7e0a.tar.xz discoin-de1bbe3b7876e311ebba5445b7b251782c0a7e0a.zip | |
Do not shadow global RPC table variable (tableRPC)
Diffstat (limited to 'src/wallet/rpcwallet.h')
| -rw-r--r-- | src/wallet/rpcwallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.h b/src/wallet/rpcwallet.h index a5de7e2de..3a68ccf1b 100644 --- a/src/wallet/rpcwallet.h +++ b/src/wallet/rpcwallet.h @@ -7,6 +7,6 @@ class CRPCTable; -void RegisterWalletRPCCommands(CRPCTable &tableRPC); +void RegisterWalletRPCCommands(CRPCTable &t); #endif //BITCOIN_WALLET_RPCWALLET_H |