From 1ef50a3b2c16c3148eb2aaaca5ed078e794a3a14 Mon Sep 17 00:00:00 2001 From: prathamesh0 Date: Wed, 14 Sep 2022 15:57:14 +0530 Subject: [PATCH] Update refs in GitHub workflow --- .github/workflows/on-pr-publish.yaml | 2 +- pkg/serve/config.go | 2 ++ test/README.md | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/on-pr-publish.yaml b/.github/workflows/on-pr-publish.yaml index c046ab7d..6b07b704 100644 --- a/.github/workflows/on-pr-publish.yaml +++ b/.github/workflows/on-pr-publish.yaml @@ -29,7 +29,7 @@ jobs: BUILD_KEY: ${{ secrets.BUILD_KEY }} with: STACK_ORCHESTRATOR_REF: "f2fd766f5400fcb9eb47b50675d2e3b1f2753702" - GO_ETHEREUM_REF: "be1757b9fd884cb20c8d7faac8fa81fc49bb7216" + GO_ETHEREUM_REF: "0c1e451c9865d8d47797b35526c4875f0d224772" IPLD_ETH_DB_REF: "be345e0733d2c025e4082c5154e441317ae94cf7" build: name: Run docker build diff --git a/pkg/serve/config.go b/pkg/serve/config.go index 09e484cb..fd345ed2 100644 --- a/pkg/serve/config.go +++ b/pkg/serve/config.go @@ -219,6 +219,8 @@ func NewConfig() (*Config, error) { if rpcGasCap, ok := new(big.Int).SetString(rpcGasCapStr, 10); ok { c.RPCGasCap = rpcGasCap } + } else { + c.RPCGasCap = big.NewInt(0) } chainConfigPath := viper.GetString("ethereum.chainConfig") if chainConfigPath != "" { diff --git a/test/README.md b/test/README.md index 02c21b9d..2a4bb99c 100644 --- a/test/README.md +++ b/test/README.md @@ -10,10 +10,10 @@ git checkout v4.2.1-alpha ``` -- Checkout [v4 release](https://github.com/vulcanize/go-ethereum/releases/tag/v1.10.21-statediff-4.1.2-alpha) in go-ethereum repo. +- Checkout [v4 release](https://github.com/vulcanize/go-ethereum/releases/tag/v1.10.23-statediff-4.2.0-alpha) in go-ethereum repo. ```bash # In go-ethereum repo. - git checkout v1.10.21-statediff-4.1.2-alpha + git checkout v1.10.23-statediff-4.2.0-alpha ``` - Checkout working commit in stack-orchestrator repo.