Skip to content

Commit

Permalink
fix(eldfell): Use env variable for port assignment in start-zkevm-cha…
Browse files Browse the repository at this point in the history
…in-rpcd.sh (#77)

Using :9000 works only if the .env.l3 variable is set to 9000.
  • Loading branch information
fz3n authored Jul 18, 2023
1 parent 95fe977 commit a1dfb6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/l3/start-zkevm-chain-rpcd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ "$ENABLE_PROVER" == "true" ]; then

rm -rf /data/kzg_bn254_21.srs && wget https://storage.googleapis.com/zkevm-circuits-keys/kzg_bn254_21.srs -P /data

/prover_rpcd --bind 0.0.0.0:9000
/prover_rpcd --bind 0.0.0.0:${PORT_ZKEVM_CHAIN_PROVER_RPCD}
else
sleep infinity
fi

0 comments on commit a1dfb6d

Please sign in to comment.