From 3efa200f745f0911545feeb410e9ba09a8d955fc Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 22 Feb 2012 21:53:19 +0300 Subject: [PATCH 1/2] fix --- client/MANIFEST.in | 1 + client/remote_wallet.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/client/MANIFEST.in b/client/MANIFEST.in index 1b745ff9..6962801c 100644 --- a/client/MANIFEST.in +++ b/client/MANIFEST.in @@ -5,4 +5,5 @@ exclude setup.py recursive-include ecdsa *.py recursive-include aes *.py include icons.qrc +include remote.php recursive-include icons * diff --git a/client/remote_wallet.py b/client/remote_wallet.py index e0ea3fc9..2c388c8f 100644 --- a/client/remote_wallet.py +++ b/client/remote_wallet.py @@ -88,7 +88,7 @@ if __name__ == '__main__': if len(sys.argv)>1: import jsonrpclib - server = jsonrpclib.Server('http://%s:%d'%(host,port)) + server = jsonrpclib.Server('http://%s:%s@%s:%d'%(username, password, host, port)) cmd = sys.argv[1] try: From 9e7098bb4a94371472cc33b188e7fe6caf2d16fe Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 25 Feb 2012 07:51:45 +0100 Subject: [PATCH 2/2] update help --- client/electrum | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/electrum b/client/electrum index 079259a1..0cc4e9c7 100755 --- a/client/electrum +++ b/client/electrum @@ -92,7 +92,7 @@ if __name__ == '__main__': if not wallet.read() and cmd not in ['help','create','restore']: print "Wallet file not found." - print "Type 'electrum.py create' to create a new wallet, or provide a path to a wallet with the -d option" + print "Type 'electrum create' to create a new wallet, or provide a path to a wallet with the -w option" sys.exit(0) if cmd in ['create', 'restore']: