Skip to content

Commit

Permalink
fix(eldfell): make zkevm-rpcd-chain port number explicit (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha authored Jul 18, 2023
1 parent e7cb642 commit 38d2114
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion script/l2/start-zkevm-chain-rpcd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if [ "$ENABLE_PROVER" == "true" ]; then
wget https://storage.googleapis.com/zkevm-circuits-keys/19.bin -P /data
fi

/prover_rpcd --bind 0.0.0.0:${PORT_ZKEVM_CHAIN_PROVER_RPCD}
/prover_rpcd --bind 0.0.0.0:9000
else
sleep infinity
fi
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:${PORT_ZKEVM_CHAIN_PROVER_RPCD}
/prover_rpcd --bind 0.0.0.0:9000
else
sleep infinity
fi

0 comments on commit 38d2114

Please sign in to comment.