2020-04-16 13:14:08 -04:00
|
|
|
// Copyright (c) 2016-2020 The Bitcoin Core developers
|
2016-01-07 08:33:49 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2021-12-01 16:43:31 +13:00
|
|
|
#ifndef BITCOIN_WALLET_RPC_WALLET_H
|
|
|
|
#define BITCOIN_WALLET_RPC_WALLET_H
|
2016-01-07 08:33:49 +01:00
|
|
|
|
2020-05-28 02:13:19 -04:00
|
|
|
#include <span.h>
|
|
|
|
|
|
|
|
class CRPCCommand;
|
2021-11-26 13:48:32 +01:00
|
|
|
|
2020-05-28 02:13:19 -04:00
|
|
|
Span<const CRPCCommand> GetWalletRPCCommands();
|
2016-01-07 08:33:49 +01:00
|
|
|
|
2021-12-01 16:43:31 +13:00
|
|
|
#endif // BITCOIN_WALLET_RPC_WALLET_H
|