Skip to content

Commit

Permalink
op-e2e: Fix compile error (#11933)
Browse files Browse the repository at this point in the history
* op-e2e: Fix compile error

* ci: Make go-lint a dependency of bedrock-go-tests to prevent merging if it fails.
  • Loading branch information
ajsutton authored Sep 16, 2024
1 parent 21375b4 commit 66bfe67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion op-e2e/interop/supersystem.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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()
})
Expand Down

0 comments on commit 66bfe67

Please sign in to comment.