예제 #1
0
 def show_xpub_dialog(self, xpub, run_next):
     msg = ' '.join([
         _("Here is your master public key."),
         _("Please share it with your cosigners.")
     ])
     vbox = QVBoxLayout()
     layout = SeedDisplayLayout(xpub, title=msg, sid='hot')
     vbox.addLayout(layout.layout())
     self.set_main_layout(vbox, _('Master Public Key'))
     return None
예제 #2
0
 def show_xpub_dialog(self, xpub, run_next):
     vbox = QVBoxLayout()
     layout = SeedDisplayLayout(xpub, title=MSG_SHOW_MPK, sid='hot')
     vbox.addLayout(layout.layout())
     self.set_main_layout(vbox, MSG_SHOW_MPK)
     return None