Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 committed Jan 8, 2025
1 parent 10dfd4e commit 861620d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ jobs:

public-functions-size-report:
needs: [ci-rest, configure]
if: github.ref_name == 'master' || needs.configure.outputs.non-docs == 'true'
if: github.ref_name == 'master' || needs.configure.outputs.non-docs == 'true'
runs-on: ubuntu-latest
permissions:
pull-requests: write
Expand Down
6 changes: 6 additions & 0 deletions spartan/aztec-network/eth-devnet/create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ BLOCK_TIME=${BLOCK_TIME:-"12"}
GAS_LIMIT=${GAS_LIMIT:-"1000000000"}
CHAIN_ID=${CHAIN_ID:-"1337"}

# Install cast if it is not installed
if ! command -v cast &> /dev/null; then
curl -L https://foundry.paradigm.xyz | bash
~/.foundry/bin/foundryup
fi

# Function to create execution genesis
# Updates genesis timestamp to current time, helps with triggering Consensus layer
create_execution_genesis() {
Expand Down
1 change: 0 additions & 1 deletion spartan/aztec-network/templates/eth-beacon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ spec:
- name: genesis
mountPath: /genesis-template
resources:
# NOTE: new path here
{{- toYaml .Values.ethereum.beacon.resources | nindent 12 }}
volumes:
- name: shared-volume
Expand Down
1 change: 0 additions & 1 deletion spartan/aztec-network/templates/eth-validator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ spec:
- name: validator-setup
mountPath: /validator-setup
resources:
# NOTE: new path here
{{- toYaml .Values.ethereum.validator.resources | nindent 12 }}
volumes:
- name: shared-volume
Expand Down

0 comments on commit 861620d

Please sign in to comment.