Skip to content

Commit

Permalink
Merge pull request #80 from ethpandaops/barnabasbusa-patch-1
Browse files Browse the repository at this point in the history
remove not needed new line
  • Loading branch information
barnabasbusa committed Dec 5, 2023
2 parents f082a60 + 382d1f6 commit 675f489
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 675f489

Please sign in to comment.