URI: 
       tfix - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 3df699c3474e0a34bef6b7ab0c77008df21e9f54
   DIR parent 73e24312919e4415bbf6ca925bf3f761f4859e46
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Wed, 22 Feb 2012 13:27:04 +0300
       
       fix
       
       Diffstat:
         M client/wdaemon.py                   |       7 ++++++-
       
       1 file changed, 6 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/client/wdaemon.py b/client/wdaemon.py
       t@@ -28,13 +28,18 @@ Simple wallet daemon for webservers.
        - generates new addresses on request
        - private keys are not needed in order to generate new addresses. A neutralized wallet can be used (seed removed)
        - no gap limit: use 'getnum' to know how many addresses have been created.
       +
       +todo:
       +- return the max gap
       +- add expiration date
       +
        """
        
        
        host = 'localhost'
        port = 8444
        password = 'my_password'
       -path = 'wallet_path'
       +wallet_path = 'wallet_path'
        
        interface = Interface()
        wallet = Wallet(interface)