util: kill bh2u
no longer useful, and the name is so confusing...
This commit is contained in:
@@ -5,7 +5,6 @@ from kivy.lang import Builder
|
||||
from kivy.factory import Factory
|
||||
from kivy.uix.popup import Popup
|
||||
|
||||
from electrum.util import bh2u
|
||||
from electrum.logging import Logger
|
||||
from electrum.lnutil import LOCAL, REMOTE, format_short_channel_id
|
||||
from electrum.lnchannel import AbstractChannel, Channel, ChannelState, ChanCloseOption
|
||||
@@ -465,8 +464,8 @@ class ChannelDetailsPopup(Popup, Logger):
|
||||
self.app = app
|
||||
self.chan = chan
|
||||
self.title = _('Channel details')
|
||||
self.node_id = bh2u(chan.node_id)
|
||||
self.channel_id = bh2u(chan.channel_id)
|
||||
self.node_id = chan.node_id.hex()
|
||||
self.channel_id = chan.channel_id.hex()
|
||||
self.funding_txid = chan.funding_outpoint.txid
|
||||
self.short_id = format_short_channel_id(chan.short_channel_id)
|
||||
self.capacity = self.app.format_amount_and_units(chan.get_capacity())
|
||||
|
||||
@@ -6,7 +6,6 @@ from kivy.factory import Factory
|
||||
from electrum.gui import messages
|
||||
from electrum.gui.kivy.i18n import _
|
||||
from electrum.lnaddr import lndecode
|
||||
from electrum.util import bh2u
|
||||
from electrum.bitcoin import COIN
|
||||
import electrum.simple_config as config
|
||||
from electrum.logging import Logger
|
||||
@@ -150,7 +149,7 @@ class LightningOpenChannelDialog(Factory.Popup, Logger):
|
||||
if not fee:
|
||||
fee = config.FEERATE_FALLBACK_STATIC_FEE
|
||||
self.amount = self.app.format_amount_and_units(self.lnaddr.amount * COIN + fee * 2) # FIXME magic number?!
|
||||
self.pubkey = bh2u(self.lnaddr.pubkey.serialize())
|
||||
self.pubkey = self.lnaddr.pubkey.serialize().hex()
|
||||
if self.msg:
|
||||
self.app.show_info(self.msg)
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ from PyQt5.QtWidgets import QLabel, QLineEdit, QHBoxLayout, QGridLayout
|
||||
|
||||
from electrum.util import EventListener
|
||||
from electrum.i18n import _
|
||||
from electrum.util import bh2u, format_time
|
||||
from electrum.util import format_time
|
||||
from electrum.lnutil import format_short_channel_id, LOCAL, REMOTE, UpdateAddHtlc, Direction
|
||||
from electrum.lnchannel import htlcsum, Channel, AbstractChannel, HTLCWithStatus
|
||||
from electrum.lnaddr import LnAddr, lndecode
|
||||
@@ -86,7 +86,7 @@ class ChannelDetailsDialog(QtWidgets.QDialog, MessageBoxMixin, QtEventListener):
|
||||
it = HTLCItem(_('Sent HTLC with ID {}' if Direction.SENT == direction else 'Received HTLC with ID {}').format(i.htlc_id))
|
||||
it.appendRow([HTLCItem(_('Amount')),HTLCItem(self.format_msat(i.amount_msat))])
|
||||
it.appendRow([HTLCItem(_('CLTV expiry')),HTLCItem(str(i.cltv_expiry))])
|
||||
it.appendRow([HTLCItem(_('Payment hash')),HTLCItem(bh2u(i.payment_hash))])
|
||||
it.appendRow([HTLCItem(_('Payment hash')),HTLCItem(i.payment_hash.hex())])
|
||||
return it
|
||||
|
||||
def make_model(self, htlcs: Sequence[HTLCWithStatus]) -> QtGui.QStandardItemModel:
|
||||
|
||||
@@ -11,7 +11,7 @@ from PyQt5.QtWidgets import (QMenu, QHBoxLayout, QLabel, QVBoxLayout, QGridLayou
|
||||
QToolTip)
|
||||
from PyQt5.QtGui import QFont, QStandardItem, QBrush, QPainter, QIcon, QHelpEvent
|
||||
|
||||
from electrum.util import bh2u, NotEnoughFunds, NoDynamicFeeEstimates
|
||||
from electrum.util import NotEnoughFunds, NoDynamicFeeEstimates
|
||||
from electrum.i18n import _
|
||||
from electrum.lnchannel import AbstractChannel, PeerState, ChannelBackup, Channel, ChannelState, ChanCloseOption
|
||||
from electrum.wallet import Abstract_Wallet
|
||||
|
||||
@@ -57,7 +57,7 @@ from electrum.plugin import run_hook, BasePlugin
|
||||
from electrum.i18n import _
|
||||
from electrum.util import (format_time, get_asyncio_loop,
|
||||
UserCancelled, profiler,
|
||||
bh2u, bfh, InvalidPassword,
|
||||
bfh, InvalidPassword,
|
||||
UserFacingException, FailedToParsePaymentIdentifier,
|
||||
get_new_wallet_name, send_exception_to_crash_reporter,
|
||||
AddTransactionException, BITCOIN_BIP21_URI_SCHEME, os_chmod)
|
||||
|
||||
@@ -15,7 +15,7 @@ from electrum import util, paymentrequest
|
||||
from electrum import lnutil
|
||||
from electrum.plugin import run_hook
|
||||
from electrum.i18n import _
|
||||
from electrum.util import (get_asyncio_loop, bh2u, FailedToParsePaymentIdentifier,
|
||||
from electrum.util import (get_asyncio_loop, FailedToParsePaymentIdentifier,
|
||||
InvalidBitcoinURI, maybe_extract_lightning_payment_identifier, NotEnoughFunds,
|
||||
NoDynamicFeeEstimates, InvoiceError, parse_max_spend)
|
||||
from electrum.invoices import PR_PAID, Invoice
|
||||
@@ -396,7 +396,7 @@ class SendTab(QWidget, MessageBoxMixin, Logger):
|
||||
self.show_error(_("Invoice requires unknown or incompatible Lightning feature") + f":\n{e!r}")
|
||||
return
|
||||
|
||||
pubkey = bh2u(lnaddr.pubkey.serialize())
|
||||
pubkey = lnaddr.pubkey.serialize().hex()
|
||||
for k,v in lnaddr.tags:
|
||||
if k == 'd':
|
||||
description = v
|
||||
|
||||
Reference in New Issue
Block a user