electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit bab09b46278d8dfcb1472d0a0f053907cfca7eae
parent 6dfb9e12c7bad5eb50d2b8b4a154874c6af306da
Author: Maran <maran.hidskes@gmail.com>
Date:   Mon, 27 Aug 2012 10:38:22 +0200

Fix tab issue for password

Diffstat:
Melectrum | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/electrum b/electrum @@ -204,7 +204,7 @@ if __name__ == '__main__': if cmd in ['create', 'restore']: if wallet.file_exists: sys.exit("Error: Remove the existing wallet first!") - password = prompt_password("Password (hit return if you do not wish to encrypt your wallet):") + password = prompt_password("Password (hit return if you do not wish to encrypt your wallet):") w_host, w_port, w_protocol = wallet.server.split(':') host = raw_input("server (default:%s):"%w_host)