Commit 66bfe678 authored by Adrian Sutton's avatar Adrian Sutton Committed by GitHub

op-e2e: Fix compile error (#11933)

* op-e2e: Fix compile error

* ci: Make go-lint a dependency of bedrock-go-tests to prevent merging if it fails.
parent 21375b4a
......@@ -1745,6 +1745,7 @@ workflows:
- bedrock-go-tests:
requires:
- go-mod-download
- go-lint
- cannon-build-test-vectors
- cannon-go-lint-and-test
- check-generated-mocks-op-node
......
......@@ -10,6 +10,7 @@ import (
"testing"
"time"
"github.com/ethereum-optimism/optimism/op-e2e/e2eutils"
"github.com/stretchr/testify/require"
"github.com/ethereum/go-ethereum/common"
......@@ -163,7 +164,7 @@ func (s *interopE2ESystem) prepareL1() (*fakebeacon.FakeBeacon, *geth.GethInstan
blockTimeL1 := uint64(6)
blobPath := s.t.TempDir()
bcn := fakebeacon.NewBeacon(s.logger.New("role", "l1_cl"),
filepath.Join(blobPath, "l1_cl"), genesisTimestampL1, blockTimeL1)
e2eutils.NewBlobStore(), genesisTimestampL1, blockTimeL1)
s.t.Cleanup(func() {
_ = bcn.Close()
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment