Skip to content

Commit

Permalink
latest Seth + fix gun
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofel committed Apr 29, 2024
1 parent 3baa7ad commit b36bdfd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/actions/seth/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -846,8 +846,8 @@ func SendLinkFundsToDeploymentAddresses(
return errors.Wrapf(err, "Error getting LINK balance of multicall contract")
}

if toTransferToMultiCallContract.Cmp(balance) != 0 {
return fmt.Errorf("Incorrect LINK balance of multicall contract. Expected: %s. Got: %s", toTransferToMultiCallContract.String(), balance.String())
if balance.Cmp(toTransferToMultiCallContract) < 0 {
return fmt.Errorf("Incorrect LINK balance of multicall contract. Expected at least: %s. Got: %s", toTransferToMultiCallContract.String(), balance.String())
}

// Transfer LINK to ephemeral keys
Expand Down
1 change: 1 addition & 0 deletions integration-tests/load/automationv2_1/gun.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ func (m *LogTriggerGun) Call(_ *wasp.Generator) *wasp.Response {
}(a, m)
}
wg.Wait()
close(resultCh)

r := &wasp.Response{}
for result := range resultCh {
Expand Down

0 comments on commit b36bdfd

Please sign in to comment.