electrum

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

commit 07bdd6c494004458e3799ef364a71d6fa5f476c8
parent aaaeac353551d2cfde5c75872d255b67bf71ba53
Author: ThomasV <thomasv@gitorious>
Date:   Thu, 24 Oct 2013 11:43:55 +0200

move old wallet to subdir

Diffstat:
Mlib/wallet.py | 14++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/lib/wallet.py b/lib/wallet.py @@ -92,17 +92,19 @@ class WalletStorage: if path: return path - # default path in pre 1.9 versions - old_path = os.path.join(config.path, "electrum.dat") - if os.path.exists(old_path): - return old_path - # default path dirpath = os.path.join(config.path, "wallets") if not os.path.exists(dirpath): os.mkdir(dirpath) - return os.path.join(config.path, "wallets", "default_wallet") + new_path = os.path.join(config.path, "wallets", "default_wallet") + + # default path in pre 1.9 versions + old_path = os.path.join(config.path, "electrum.dat") + if os.path.exists(old_path) and not os.path.exists(new_path): + os.rename(old_path, new_path) + + return new_path def read(self, path):