We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c39ac0 commit 90d4e2eCopy full SHA for 90d4e2e
scripts/install.py
@@ -67,7 +67,13 @@ def parse_args(answers: dict):
67
if archive_ttl:
68
os.putenv('ARCHIVE_TTL', archive_ttl) # set env variable
69
70
- if validator_mode:
+ if validator_mode and validator_mode not in ('Skip', 'Validator wallet'):
71
+ if validator_mode == 'Nominator pool':
72
+ validator_mode = 'nominator-pool'
73
+ elif validator_mode == 'Single pool':
74
+ validator_mode = 'single-pool'
75
+ elif validator_mode == 'Liquid Staking':
76
+ validator_mode = 'liquid-staking'
77
res += f' -m {validator_mode}'
78
else:
79
res += f'-m {mode}'
0 commit comments