Skip to content

Commit 5edccbe

Browse files
committed
i forgot
1 parent c4dd4e4 commit 5edccbe

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/xian/tools/configure.py

+4
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ def main(self):
105105
file_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'priv_validator_key.json')
106106
target_path = os.path.join(os.path.expanduser('~'), '.cometbft', 'config', 'priv_validator_key.json')
107107
os.system(f'cp {file_path} {target_path}')
108+
# Remove node_key.json file
109+
path = os.path.join(os.path.expanduser('~'), '.cometbft', 'config', 'node_key.json')
110+
if os.path.exists(path):
111+
os.system(f'rm {path}')
108112

109113
with open(self.config_path, 'w') as f:
110114
f.write(toml.dumps(config))

0 commit comments

Comments
 (0)