1
0

add simnet support (#4455)

This commit is contained in:
Janus Troelsen
2018-06-22 17:07:07 +02:00
committed by ghost43
parent a141c69b25
commit 4f85615734
4 changed files with 17 additions and 0 deletions

View File

@@ -113,6 +113,9 @@ class SimpleConfig(PrintError):
elif self.get('regtest'):
path = os.path.join(path, 'regtest')
make_dir(path, allow_symlink=False)
elif self.get('simnet'):
path = os.path.join(path, 'simnet')
make_dir(path, allow_symlink=False)
self.print_error("electrum directory", path)
return path