commit 73e24312919e4415bbf6ca925bf3f761f4859e46
parent d9ce04e98b5a2ac674a80172bcb74bbec069ad04
Author: thomasv <thomasv@gitorious>
Date: Wed, 22 Feb 2012 11:05:52 +0100
path
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/client/wdaemon.py b/client/wdaemon.py
@@ -34,6 +34,7 @@ Simple wallet daemon for webservers.
host = 'localhost'
port = 8444
password = 'my_password'
+path = 'wallet_path'
interface = Interface()
wallet = Wallet(interface)
@@ -79,7 +80,7 @@ if __name__ == '__main__':
else:
- wallet.set_path('w')
+ wallet.set_path(wallet_path)
wallet.read()
def server_thread():