Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
samlaf committed Jun 21, 2024
1 parent 2badea0 commit d8e8c84
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions services/bls_aggregation/blsagg_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -790,14 +790,11 @@ func TestIntegrationBlsAgg(t *testing.T) {

anvilStateFileName := "contracts-deployed-anvil-state.json"
anvilC, err := testutils.StartAnvilContainer(anvilStateFileName)
if err != nil {
t.Fatal(err)
}
require.NoError(t, err)
anvilHttpEndpoint, err := anvilC.Endpoint(context.Background(), "http")
if err != nil {
t.Error(err)
}
require.NoError(t, err)
anvilWsEndpoint, err := anvilC.Endpoint(context.Background(), "ws")
require.NoError(t, err)
contractAddrs := testutils.GetContractAddressesFromContractRegistry(anvilHttpEndpoint)
t.Run("1 quorums 1 operator", func(t *testing.T) {
ecdsaPrivKeyHex := "ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"
Expand Down

0 comments on commit d8e8c84

Please sign in to comment.