Skip to content

Commit

Permalink
test: external_signer wallet flag is immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
Sjors committed Feb 23, 2021
1 parent 2655197 commit 259f52c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/functional/wallet_signer.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,10 @@ def run_test(self):
assert_equal(result['signers'][0]["fingerprint"], "00000001")
assert_equal(result['signers'][0]["name"], "trezor_t")

# Flag can't be set afterwards (could be added later for non-blank descriptor based watch-only wallets)
self.nodes[1].createwallet(wallet_name='not_hww', disable_private_keys=True, descriptors=True, external_signer=False)
not_hww = self.nodes[1].get_wallet_rpc('not_hww')
assert_raises_rpc_error(-8, "Wallet flag is immutable: external_signer", not_hww.setwalletflag, "external_signer", True)

if __name__ == '__main__':
SignerTest().main()

0 comments on commit 259f52c

Please sign in to comment.