コード例 #1
0
 def show_qr(self):
     from electrum_dash.bitcoin import base_encode, bfh
     raw_tx = str(self.tx)
     text = bfh(raw_tx)
     text = base_encode(text, base=43)
     self.app.qr_dialog(_("Raw Transaction"),
                        text,
                        text_for_clipboard=raw_tx)
コード例 #2
0
ファイル: tx_dialog.py プロジェクト: ivansib/electrum-sib
 def show_qr(self):
     from electrum_dash.bitcoin import base_encode, bfh
     raw_tx = str(self.tx)
     text = bfh(raw_tx)
     text = base_encode(text, base=43)
     self.app.qr_dialog(_("Raw Transaction"), text, text_for_clipboard=raw_tx)
コード例 #3
0
ファイル: tx_dialog.py プロジェクト: GetAywa/electrum-aywa
 def show_qr(self):
     from electrum_dash.bitcoin import base_encode, bfh
     text = bfh(str(self.tx))
     text = base_encode(text, base=43)
     self.app.qr_dialog(_("Raw Transaction"), text)