Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
george-dorin committed Dec 20, 2024
1 parent d91dc36 commit 200088f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[test_config]
overwrite_custom_url = false
test_timeout_minutes = 10
expected_event_count = 5
test_timeout_minutes = 60
expected_event_count = 10
custom_url = "https://rpc-holesky.flashbots.net/fast"

[contracts]

[blockchain_a]
type = "geth"
type = "anvil"
docker_cmd_params = ["-b", "1"]
chain_id = "17000"

[blockchain_a.out]
chain_id = "17000"
use_cache = false
family = "evm"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ func TestSmoke(t *testing.T) {
ocr2Keys, err := workerNodes[i].MustReadOCR2Keys()
require.NoError(t, err, "cannot fetch OCR2 keys")
require.Equal(t, 1, len(ocr2Keys.Data), "expecting only one OCR2 key")
response, _, err = workerNodes[i].CreateJobRaw(fmt.Sprintf(oevJobSpec, uuid.New().String(), oevContract.Addresses[0].String(), chainFamily, ocr2Keys.Data[0].ID, primaryAddresses[i], bootstrapPeerID.Data[0].Attributes.PeerID,
response, _, err := workerNodes[i].CreateJobRaw(fmt.Sprintf(oevJobSpec, uuid.New().String(), oevContract.Addresses[0].String(), chainFamily, ocr2Keys.Data[0].ID, primaryAddresses[i], bootstrapPeerID.Data[0].Attributes.PeerID,
strings.TrimPrefix(out.CLNodes[0].Node.DockerP2PUrl, "http://"), chainID, oevContract.Addresses[0].String(), secondaryAddresses[i]))
require.NoError(t, err)
require.Empty(t, response.Errors)
Expand Down Expand Up @@ -430,7 +430,7 @@ func waitForDualAggregatorEvents(
possibleRounds = append(possibleRounds, uint32(i))
}

startBlock := uint64(2969733)
startBlock := uint64(1) //TODO: @george-dorin Fix Me!
lggr.Info().Msg("Waiting for Dual aggregator events")
var confirmedPrimary, confirmedSecondary int16

Expand Down

0 comments on commit 200088f

Please sign in to comment.