pull down to refresh
0 sats \ 1 reply \ @megaptera 5h \ on: How to open Simple Taproot Channels on LND lightning
Is there a way I can make sure my peer does support taproot channels?
Yes you can via cli the command should be:
lncli listpeers | jq '.peers[] | select(.pub_key=="<peer_pubkey>") | .features'
if the peer is not connected, connect first:
lncli connect <peer_pubkey>@<host>:<port>
reply