ui: Add page to manage SMSG addresses

This commit is contained in:
tecnovert
2021-10-19 20:59:18 +02:00
parent 4ce8c58872
commit f63815b26b
8 changed files with 299 additions and 6 deletions

View File

@@ -239,6 +239,14 @@ def strTxType(tx_type):
return 'Unknown'
def strMessageType(msg_type):
if msg_type == MessageTypes.OFFER:
return 'Offers'
if msg_type == MessageTypes.BID:
return 'Bids'
return 'Unknown'
def getLockName(lock_type):
if lock_type == SEQUENCE_LOCK_BLOCKS:
return 'Sequence lock, blocks'