URI: 
       tMerge pull request #483 from flatfly/patch-2 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 3ee97be26155a64903fc24eba00078b6d57663d4
   DIR parent c389b47c21d7c1a6be3ebb36839a1ea48651a08c
  HTML Author: ThomasV <thomasv1@gmx.de>
       Date:   Sun,  1 Dec 2013 05:31:05 -0800
       
       Merge pull request #483 from flatfly/patch-2
       
       added getversion command
       Diffstat:
         M lib/commands.py                     |       5 +++++
       
       1 file changed, 5 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/lib/commands.py b/lib/commands.py
       t@@ -67,6 +67,7 @@ register_command('dumpprivkeys',         0, 0, False, True,  True,  'dump all pr
        register_command('freeze',               1, 1, False, True,  True,  'Freeze the funds at one of your wallet\'s addresses', 'freeze <address>')
        register_command('getbalance',           0, 1, True,  True,  False, 'Return the balance of your wallet, or of one account in your wallet', 'getbalance [<account>]')
        register_command('getservers',           0, 0, True,  False, False, 'Return the list of available servers')
       +register_command('getversion',           1, 1, False,  False,  False, 'Return the version of your client', 'getversion')
        register_command('getaddressbalance',    1, 1, True,  True,  False, 'Return the balance of an address', 'getbalance <address>')
        register_command('getaddresshistory',    1, 1, True,  True,  False, 'Return the transaction history of a wallet address', 'getaddresshistory <address>')
        register_command('getconfig',            1, 1, False, False, False, 'Return a configuration variable', 'getconfig <name>')
       t@@ -207,6 +208,10 @@ class Commands:
            def getservers(self):
                return self.network.get_servers()
        
       +    def getversion():
       +        import electrum 
       +        return electrum.ELECTRUM_VERSION
       + 
            def getmpk(self):
                return self.wallet.get_master_public_key()