diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2019-02-15 12:54:29 +0100 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2021-02-23 14:34:30 +0100 |
commit | 07b7c940a7da138d55a484ef83fee19ebf58a867 (patch) | |
tree | f46128f68c0f12d15b267768092352ff02724432 /test | |
parent | 8ce7767071779a0170364e6426bd393ed71bf281 (diff) |
rpc: add external signer RPC files
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/rpc_help.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/functional/rpc_help.py b/test/functional/rpc_help.py index 1eefd109f8..de21f43747 100755 --- a/test/functional/rpc_help.py +++ b/test/functional/rpc_help.py @@ -105,10 +105,13 @@ class HelpRpcTest(BitcoinTestFramework): if self.is_wallet_compiled(): components.append('Wallet') + if self.is_external_signer_compiled(): + components.append('Signer') + if self.is_zmq_compiled(): components.append('Zmq') - assert_equal(titles, components) + assert_equal(titles, sorted(components)) def dump_help(self): dump_dir = os.path.join(self.options.tmpdir, 'rpc_help_dump') |