ui: Connect new settings.

This commit is contained in:
tecnovert
2022-11-13 23:18:33 +02:00
parent bbe7556d18
commit 54e434e1c9
12 changed files with 411 additions and 152 deletions

View File

@@ -380,6 +380,8 @@ def describeEventEntry(event_type, event_msg):
def getVoutByAddress(txjs, p2sh):
for o in txjs['vout']:
try:
if 'address' in o['scriptPubKey'] and o['scriptPubKey']['address'] == p2sh:
return o['n']
if p2sh in o['scriptPubKey']['addresses']:
return o['n']
except Exception: