blob: f3ab83c4288f808f4fc1e62737fd9631de0cf568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright (c) 2018-2021 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_RPCSIGNER_H
#define BITCOIN_WALLET_RPCSIGNER_H
#include <span.h>
#include <util/system.h>
#include <vector>
#ifdef ENABLE_EXTERNAL_SIGNER
class CRPCCommand;
namespace interfaces {
class Chain;
class Handler;
}
Span<const CRPCCommand> GetSignerRPCCommands();
#endif // ENABLE_EXTERNAL_SIGNER
#endif //BITCOIN_WALLET_RPCSIGNER_H
|