Skip to content

Commit

Permalink
increase upkeep funding, fix event count calc
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudhwarrier committed Nov 15, 2023
1 parent 342dabd commit 3ee2fff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration-tests/load/automationv2_1/automationv2_1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func TestLogTrigger(t *testing.T) {
testType := "load"
networkDetailTOML := `MinIncomingConfirmations = 1`
loadDuration := time.Duration(duration) * time.Second
automationDefaultLinkFunds := big.NewInt(0).Mul(big.NewInt(1e18), big.NewInt(int64(100))) //100 LINK
automationDefaultLinkFunds := big.NewInt(0).Mul(big.NewInt(1e18), big.NewInt(int64(10000))) //10000 LINK
automationDefaultUpkeepGasLimit := uint32(1_000_000)

registrySettings := &contracts.KeeperRegistrySettings{
Expand Down Expand Up @@ -483,6 +483,7 @@ func TestLogTrigger(t *testing.T) {
for _, gen := range p.Generators {
numberOfEventsEmitted += len(gen.GetData().OKData.Data)
}
numberOfEventsEmitted = numberOfEventsEmitted * numberOfEvents
l.Info().Int("Number of Events Emitted", numberOfEventsEmitted).Msg("Number of Events Emitted")

if endBlock-startBlock < uint64(batchSize) {
Expand Down

0 comments on commit 3ee2fff

Please sign in to comment.