Skip to content

Commit

Permalink
fix linkfunds
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudhwarrier committed Nov 14, 2023
1 parent 344b9e7 commit ac4275f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func TestLogTrigger(t *testing.T) {
testType := "load"
networkDetailTOML := `MinIncomingConfirmations = 1`
loadDuration := time.Duration(duration) * time.Second
automationDefaultLinkFunds := big.NewInt(int64(9e18) * 100)
automationDefaultLinkFunds := big.NewInt(0).Mul(big.NewInt(1e18), big.NewInt(int64(100))) //100 LINK
automationDefaultUpkeepGasLimit := uint32(2500000)

registrySettings := &contracts.KeeperRegistrySettings{
Expand Down

0 comments on commit ac4275f

Please sign in to comment.