mirror of
https://github.com/bitromortac/lndmanage.git
synced 2026-08-13 12:33:37 +02:00
openchannels: add taproot address type, fix log
This commit is contained in:
parent
e3166bd448
commit
a3b2077feb
2 changed files with 3 additions and 2 deletions
|
|
@ -6,6 +6,7 @@ from typing import Tuple
|
|||
class AddressType(Enum):
|
||||
WITNESS_PUBKEY_HASH = 0
|
||||
NESTED_PUBKEY_HASH = 1
|
||||
TAPROOT_PUBKEY = 4
|
||||
|
||||
|
||||
@dataclass(order=True)
|
||||
|
|
|
|||
|
|
@ -82,9 +82,9 @@ class ChannelOpener(object):
|
|||
# 1. connect to nodes
|
||||
try:
|
||||
pubkeys_succeeded = self.node._connect_nodes(pubkeys)
|
||||
except ConnectionRefusedError:
|
||||
except ConnectionRefusedError as e:
|
||||
logger.info(">>> Could not connect to all nodes. Try to connect "
|
||||
"manually via 'lncli connect', then rerun.")
|
||||
f"manually via 'lncli connect', then rerun. {e}")
|
||||
return
|
||||
|
||||
assert len(pubkeys) == len(pubkeys_succeeded)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue