diff options
author | Wei-Ning Huang <w@byzantine-lab.io> | 2019-09-23 15:32:39 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-09-23 15:32:39 +0800 |
commit | a724a3a78023e9b854c4e976cd58468da8aaad6c (patch) | |
tree | 71bd4e2b848973ba83d2cb5f50898c658a4a9a60 | |
parent | 30c749ae25eb42397e773b51dbdd4b53c66ca8cd (diff) | |
download | go-tangerine-a724a3a78023e9b854c4e976cd58468da8aaad6c.tar.gz go-tangerine-a724a3a78023e9b854c4e976cd58468da8aaad6c.tar.zst go-tangerine-a724a3a78023e9b854c4e976cd58468da8aaad6c.zip |
scripts: fix missing argument
-rwxr-xr-x | scripts/run_bp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/run_bp.py b/scripts/run_bp.py index ce2efc1c5..c7b071104 100755 --- a/scripts/run_bp.py +++ b/scripts/run_bp.py @@ -211,7 +211,7 @@ def main(): if not os.path.exists(args.nodekey): res = input('No node key found, generate a new one? [y/N] ') if res == 'y': - generate_node_key() + generate_node_key(args.nodekey) else: print('Abort.') sys.exit(1) |