diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-03-31 10:55:06 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-03-31 10:55:15 +0200 |
commit | 16555b658f5b98fd5e0102bd3618659588fe8d0b (patch) | |
tree | 8cf3ced27bcf464c2113436aadb718769b44337b /src/wallet/rpcwallet.h | |
parent | e8a8f3d4b22b76a14693f4c2af645021f656c823 (diff) | |
parent | fb8a8cf2e610920e9eee61c19ed6080af064bb43 (diff) |
Merge #7766: rpc: Register calls where they are defined
fb8a8cf rpc: Register calls where they are defined (Wladimir J. van der Laan)
Diffstat (limited to 'src/wallet/rpcwallet.h')
-rw-r--r-- | src/wallet/rpcwallet.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.h b/src/wallet/rpcwallet.h index 42e8021afa..a5de7e2de1 100644 --- a/src/wallet/rpcwallet.h +++ b/src/wallet/rpcwallet.h @@ -5,6 +5,8 @@ #ifndef BITCOIN_WALLET_RPCWALLET_H #define BITCOIN_WALLET_RPCWALLET_H -void walletRegisterRPCCommands(); +class CRPCTable; + +void RegisterWalletRPCCommands(CRPCTable &tableRPC); #endif //BITCOIN_WALLET_RPCWALLET_H |