Skip to content

Commit

Permalink
fix: allow larger transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 committed Jan 17, 2025
1 parent 8d9bd97 commit 7abee24
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
8 changes: 2 additions & 6 deletions scripts/run_native_testnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,8 @@ if $METRICS; then
fi

# If an ethereum rpc url is provided, use it
if $ETHEREUM_HOST; then
export ETHEREUM_HOST
fi
if $L1_CONSENSUS_HOST_URL; then
export L1_CONSENSUS_HOST_URL
fi
export ETHEREUM_HOST
export L1_CONSENSUS_HOST_URL

# If an ethereum url has been provided, do not run the ethereum.sh script
if [ -n "$ETHEREUM_HOST" ]; then
Expand Down
1 change: 1 addition & 0 deletions spartan/aztec-network/templates/eth-execution.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ spec:
--http.addr="0.0.0.0"
--http.api="admin,net,eth,web3,debug,trace"
--http.corsdomain="*"
--txpool.max-tx-input-bytes={{ .Values.ethereum.maxTxInputSizeBytes }}
--max-outbound-peers=0
--max-inbound-peers=0
--ipcdisable
Expand Down
2 changes: 2 additions & 0 deletions spartan/aztec-network/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ ethereum:
# 1 billion gas limit
# helps ensure we can deploy public contracts
gasLimit: "1000000000"
# 10 times the default of 131072
maxTxInputSizeBytes: "1310720"
args: ""
execution:
externalHost: ""
Expand Down

0 comments on commit 7abee24

Please sign in to comment.