URI: 
       tadd release notes - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 511b23fee6940681701ef83950fdd8f95b0bd9e8
   DIR parent 826c44e5000488e9ba6b1bb9003794f0710f6cc5
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Wed, 28 Oct 2015 11:45:53 +0100
       
       add release notes
       
       Diffstat:
         M RELEASE-NOTES                       |       6 ++++++
         M lib/commands.py                     |       4 ++++
       
       2 files changed, 10 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/RELEASE-NOTES b/RELEASE-NOTES
       t@@ -1,3 +1,9 @@
       +# Release 2.5.2 (bugfixes)
       + * fix bug #1513 (client tries to broadcast transaction while not connected)
       + * fix synchronization bug (#1520)
       + * fix command line bug (#1494)
       + * fixes for exchange rate plugin
       +
        # Release 2.5.1 (bugfixes)
         * signatures in transactions were still using the old class
         * make sure that setup.py uses python2
   DIR diff --git a/lib/commands.py b/lib/commands.py
       t@@ -101,6 +101,7 @@ class Commands:
            @command('')
            def create(self):
                """Create a new wallet"""
       +        raise BaseException('Not a JSON-RPC command')
        
            @command('wn')
            def restore(self, text):
       t@@ -108,15 +109,18 @@ class Commands:
                public key, a master private key, a list of bitcoin addresses
                or bitcoin private keys. If you want to be prompted for your
                seed, type '?' or ':' (concealed) """
       +        raise BaseException('Not a JSON-RPC command')
        
            @command('w')
            def deseed(self):
                """Remove seed from wallet. This creates a seedless, watching-only
                wallet."""
       +        raise BaseException('Not a JSON-RPC command')
        
            @command('wp')
            def password(self):
                """Change wallet password. """
       +        raise BaseException('Not a JSON-RPC command')
        
            @command('')
            def getconfig(self, key):