Skip to content

Commit ac0aa67

Browse files
author
keenondrums
committed
Start script fix
1 parent b1f6163 commit ac0aa67

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/start_plenum_node

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,12 @@ if __name__ == "__main__":
3939
keepDir = os.path.join(config.baseDir, config.NETWORK_NAME)
4040
print("You can find data in {}".format(keepDir))
4141

42+
node_data_dir = os.path.join(config.NODE_BASE_DATA_DIR, config.NETWORK_NAME)
43+
4244
with Looper(debug=config.LOOPER_DEBUG) as looper:
43-
node = Node(selfName, nodeRegistry=None, basedirpath=keepDir, ha=ha,
45+
node = Node(selfName, nodeRegistry=None, basedirpath=keepDir,
46+
base_data_dir=node_data_dir,
47+
ha=ha,
4448
cliha=cliha)
4549
looper.add(node)
4650
looper.run()

0 commit comments

Comments
 (0)