URI: 
       ttrustedcoin plugin: fix is_billing - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit f2f92f9263163ea24a8e47d7fb4600864e71d2c2
   DIR parent 2a608280f4e22ff9b24ca90fd87cbe4b013da77a
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Sun, 22 Feb 2015 12:06:04 +0100
       
       ttrustedcoin plugin: fix is_billing
       
       Diffstat:
         M plugins/trustedcoin.py              |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/plugins/trustedcoin.py b/plugins/trustedcoin.py
       t@@ -214,6 +214,7 @@ class Plugin(BasePlugin):
                electrum.wallet.wallet_types.append(('twofactor', '2fa', _("Wallet with two-factor authentication"), Wallet_2fa))
                self.seed_func = lambda x: bitcoin.is_new_seed(x, SEED_PREFIX)
                self.billing_info = None
       +        self.is_billing = False
        
            def fullname(self):
                return 'Two Factor Authentication'
       t@@ -332,7 +333,6 @@ class Plugin(BasePlugin):
            @hook
            def init_qt(self, gui):
                self.window = gui.main_window
       -        self.is_billing = False
        
            @hook
            def do_clear(self):