mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 17:01:34 +00:00
fix indent
This commit is contained in:
parent
034bc64fe6
commit
7c1d07c999
1 changed files with 6 additions and 6 deletions
|
@ -151,11 +151,11 @@ class Plugin(BasePlugin):
|
||||||
d.exec_()
|
d.exec_()
|
||||||
|
|
||||||
def read_raw_qr(self):
|
def read_raw_qr(self):
|
||||||
qrcode = self.scan_qr()
|
qrcode = self.scan_qr()
|
||||||
if qrcode:
|
if qrcode:
|
||||||
tx_dict = self.gui.tx_dict_from_text(qrcode)
|
tx_dict = self.gui.tx_dict_from_text(qrcode)
|
||||||
if tx_dict:
|
if tx_dict:
|
||||||
self.create_transaction_details_window(tx_dict)
|
self.create_transaction_details_window(tx_dict)
|
||||||
|
|
||||||
|
|
||||||
def create_transaction_details_window(self, tx_dict):
|
def create_transaction_details_window(self, tx_dict):
|
||||||
|
@ -183,7 +183,7 @@ class Plugin(BasePlugin):
|
||||||
l.addWidget(QLabel(_("Wallet is de-seeded, can't sign.")), 4,1)
|
l.addWidget(QLabel(_("Wallet is de-seeded, can't sign.")), 4,1)
|
||||||
else:
|
else:
|
||||||
l.addWidget(QLabel(_("Signed")), 3,1)
|
l.addWidget(QLabel(_("Signed")), 3,1)
|
||||||
b = QPushButton("Broadcast transaction")
|
b = QPushButton("Broadcast transaction")
|
||||||
b.clicked.connect(lambda: self.gui.send_raw_transaction(tx, dialog))
|
b.clicked.connect(lambda: self.gui.send_raw_transaction(tx, dialog))
|
||||||
l.addWidget(b,4,1)
|
l.addWidget(b,4,1)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue