mirror of
https://github.com/Coldcard/ckbunker.git
synced 2026-08-13 12:33:23 +02:00
Bugfix for msg_paths=any
This commit is contained in:
parent
c133aa9eae
commit
46c2c5d258
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@ async def tools_page(request):
|
|||
# - message signing useul tho
|
||||
if BP.get('policy'):
|
||||
paths = BP['policy'].get('msg_paths') or []
|
||||
paths = set(i.replace('*', '999') for i in paths if i != 'any')
|
||||
paths = set(i.replace('*', '999') for i in paths)
|
||||
else:
|
||||
# priv_over_ux: we don't know, but some useful ones
|
||||
paths = ['m', "m/0/0", "m/44'/0'/0'/0/0", "m/49'/0'/0'/0/0",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue