Esempio n. 1
0
    def init_network(self, network):
        message = _("Electrum-PAC communicates with remote servers to get "
                  "information about your transactions and addresses. The "
                  "servers all fulfil the same purpose only differing in "
                  "hardware. In most cases you simply want to let Electrum-PAC "
                  "pick one at random.  However if you prefer feel free to "
                  "select a server manually.")
        choices = [_("Auto connect"), _("Select server manually")]
        title = _("How do you want to connect to a server? ")
        clayout = ChoicesLayout(message, choices)
        self.back_button.setText(_('Cancel'))
        self.exec_layout(clayout.layout(), title)
        r = clayout.selected_index()
        if r == 1:
            nlayout = NetworkChoiceLayout(network, self.config, wizard=True)
            if self.exec_layout(nlayout.layout()):
                nlayout.accept()
        else:
            network.auto_connect = True
            self.config.set_key('auto_connect', True, True)

        self.config.set_key('currency', 'USD', True)
        self.config.set_key('use_exchange_rate', True, True)
        self.config.set_key('dynamic_fees', False, True)
        self.config.set_key('fee_per_kb', 1000, True)
Esempio n. 2
0
 def choose_server(self, network):
     title = _("UWalletLite communicates with remote servers to get information about your transactions and addresses.\r\n The servers all fulfil the same purpose only differing in hardware. In most cases you simply want to let Uwallet pick one at random.\r\nHowever if you prefer feel free to select a server manually.")
     choices = [_("Auto connect"), _("Select server manually")]
     choices_title = _("How do you want to connect to a server? ")
     clayout = ChoicesLayout(choices_title, choices)
     self.set_main_layout(clayout.layout(), title)
     auto_connect = True
     if clayout.selected_index() == 1:
         nlayout = NetworkChoiceLayout(network, self.config, wizard=True)
         if self.set_main_layout(nlayout.layout(), raise_on_cancel=False):
             nlayout.accept()
             auto_connect = False
     self.config.set_key('auto_connect', auto_connect, True)
     network.auto_connect = auto_connect
Esempio n. 3
0
 def choose_server(self, network):
     title = _("Electrum communicates with remote servers to get "
               "information about your transactions and addresses. The "
               "servers all fulfil the same purpose only differing in "
               "hardware. In most cases you simply want to let Electrum "
               "pick one at random.  However if you prefer feel free to "
               "select a server manually.")
     choices = [_("Auto connect"), _("Select server manually")]
     choices_title = _("How do you want to connect to a server? ")
     clayout = ChoicesLayout(choices_title, choices)
     self.set_main_layout(clayout.layout(), title)
     auto_connect = True
     if clayout.selected_index() == 1:
         nlayout = NetworkChoiceLayout(network, self.config, wizard=True)
         if self.set_main_layout(nlayout.layout(), raise_on_cancel=False):
             nlayout.accept()
             auto_connect = False
     self.config.set_key('auto_connect', auto_connect, True)
     network.auto_connect = auto_connect
Esempio n. 4
0
 def init_network(self, network):
     message = _("Electrum communicates with remote servers to get "
               "information about your transactions and addresses. The "
               "servers all fulfil the same purpose only differing in "
               "hardware. In most cases you simply want to let Electrum "
               "pick one at random.  However if you prefer feel free to "
               "select a server manually.")
     choices = [_("Auto connect"), _("Select server manually")]
     title = _("How do you want to connect to a server? ")
     clayout = ChoicesLayout(message, choices)
     self.back_button.setText(_('Cancel'))
     self.exec_layout(clayout.layout(), title)
     r = clayout.selected_index()
     if r == 1:
         nlayout = NetworkChoiceLayout(network, self.config, wizard=True)
         if self.exec_layout(nlayout.layout()):
             nlayout.accept()
     else:
         network.auto_connect = True
         self.config.set_key('auto_connect', True, True)
Esempio n. 5
0
 def init_network(self, network):
     message = _("Electrum communicates with remote servers to get "
                 "information about your transactions and addresses. The "
                 "servers all fulfil the same purpose only differing in "
                 "hardware. In most cases you simply want to let Electrum "
                 "pick one at random.  However if you prefer feel free to "
                 "select a server manually.")
     choices = [_("Auto connect"), _("Select server manually")]
     title = _("How do you want to connect to a server? ")
     clayout = ChoicesLayout(message, choices)
     self.set_main_layout(clayout.layout(), title)
     r = clayout.selected_index()
     if r == 0:
         auto_connect = True
     elif r == 1:
         auto_connect = True
         nlayout = NetworkChoiceLayout(network, self.config, wizard=True)
         if self.set_main_layout(nlayout.layout()):
             auto_connect = False
     else:
         auto_connect = True
     network.auto_connect = auto_connect
     self.config.set_key('auto_connect', auto_connect, True)