1
0

create separate class for deterministic key generation. add pubkeys to validateaddress

This commit is contained in:
thomasv
2013-02-23 11:35:46 +01:00
parent 94fbad2965
commit 03e2160503
4 changed files with 127 additions and 84 deletions

View File

@@ -1319,10 +1319,10 @@ class ElectrumWindow(QMainWindow):
dialog.setWindowTitle(_("Master Public Key"))
main_text = QTextEdit()
main_text.setText(self.wallet.master_public_key)
main_text.setText(self.wallet.get_master_public_key())
main_text.setReadOnly(True)
main_text.setMaximumHeight(170)
qrw = QRCodeWidget(self.wallet.master_public_key, 6)
qrw = QRCodeWidget(self.wallet.get_master_public_key(), 6)
ok_button = QPushButton(_("OK"))
ok_button.setDefault(True)