diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-01-07 08:33:49 +0100 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-01-20 15:03:25 +0100 |
commit | dd2dc400eed7c4e8521d1264d652ee32070d2c47 (patch) | |
tree | 89f56a6a0f1b6b38054a25bdff3678f3ccdc0fc1 /src/wallet/rpcwallet.h | |
parent | e1060c56cca7eeab8e217eb7b416c16487fd175e (diff) |
[RPC, Wallet] Move RPC dispatch table registration to wallet/ code
Allow extending the rpc dispatch table by appending commands when server is not running.
Diffstat (limited to 'src/wallet/rpcwallet.h')
-rw-r--r-- | src/wallet/rpcwallet.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/wallet/rpcwallet.h b/src/wallet/rpcwallet.h new file mode 100644 index 0000000000..42e8021afa --- /dev/null +++ b/src/wallet/rpcwallet.h @@ -0,0 +1,10 @@ +// Copyright (c) 2016 The Bitcoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#ifndef BITCOIN_WALLET_RPCWALLET_H +#define BITCOIN_WALLET_RPCWALLET_H + +void walletRegisterRPCCommands(); + +#endif //BITCOIN_WALLET_RPCWALLET_H |