kivy: py3 updates

This commit is contained in:
ThomasV 2017-10-22 07:33:03 +02:00
parent fd11397ac6
commit 42f9d1ee63
2 changed files with 4 additions and 4 deletions

View File

@ -690,7 +690,7 @@ class ShowXpubDialog(WizardDialog):
self.app.do_share(self.xpub, _("Master Public Key"))
def do_qr(self):
from qr_dialog import QRDialog
from .qr_dialog import QRDialog
popup = QRDialog(_("Master Public Key"), self.xpub, True)
popup.open()

View File

@ -129,7 +129,7 @@ class TxDialog(Factory.Popup):
self.ids.output_list.update(self.tx.outputs())
def do_rbf(self):
from bump_fee_dialog import BumpFeeDialog
from .bump_fee_dialog import BumpFeeDialog
is_relevant, is_mine, v, fee = self.wallet.get_wallet_delta(self.tx)
size = self.tx.estimated_size()
d = BumpFeeDialog(self.app, fee, size, self._do_rbf)
@ -171,7 +171,7 @@ class TxDialog(Factory.Popup):
self.app.broadcast(self.tx)
def show_qr(self):
from electrum.bitcoin import base_encode
text = str(self.tx).decode('hex')
from electrum.bitcoin import base_encode, bfh
text = bfh(str(self.tx))
text = base_encode(text, base=43)
self.app.qr_dialog(_("Raw Transaction"), text)