Make node.sh honor -i, if given, for validators

This is required for staked nodes for now, and is be superseded by
-staking=true option in harmony binary itself.
pull/1916/head
Eugene Kim 5 years ago
parent 0bd1beab00
commit e1771cc884
  1. 9
      scripts/node.sh

@ -653,6 +653,15 @@ do
fi fi
# backward compatible with older harmony node software # backward compatible with older harmony node software
case "${node_type}" in case "${node_type}" in
validator)
case "${shard_id}" in
?*)
args+=(
-shard_id="${shard_id}"
)
;;
esac
;;
explorer) explorer)
args+=( args+=(
-node_type="${node_type}" -node_type="${node_type}"

Loading…
Cancel
Save