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