Skip to content

Commit

Permalink
remove not needed new line
Browse files Browse the repository at this point in the history
Signed-off-by: Barnabas Busa <busa.barnabas@gmail.com>
  • Loading branch information
barnabasbusa authored Dec 5, 2023
1 parent f082a60 commit 382d1f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ gen_cl_config(){
fi
/usr/local/bin/eth2-testnet-genesis "${genesis_args[@]}"
/usr/local/bin/zcli pretty bellatrix BeaconState /data/custom_config_data/genesis.ssz > /data/custom_config_data/parsedBeaconState.json
jq -r '.eth1_data.block_hash' /data/custom_config_data/parsedBeaconState.json > /data/custom_config_data/deposit_contract_block_hash.txt
jq -r '.genesis_validators_root' /data/custom_config_data/parsedBeaconState.json > /data/custom_config_data/genesis_validators_root.txt
jq -r '.eth1_data.block_hash' /data/custom_config_data/parsedBeaconState.json | tr -d '\n' > /data/custom_config_data/deposit_contract_block_hash.txt
jq -r '.genesis_validators_root' /data/custom_config_data/parsedBeaconState.json | tr -d '\n' > /data/custom_config_data/genesis_validators_root.txt
else
echo "cl genesis already exists. skipping generation..."
fi
Expand Down

0 comments on commit 382d1f6

Please sign in to comment.