Skip to content

Commit

Permalink
Fix contract typo (#10129)
Browse files Browse the repository at this point in the history
* add automation custom telem to job

* fix contract typo

* update
  • Loading branch information
FelixFan1992 authored Aug 9, 2023
1 parent 50d3075 commit 9ca4cba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ abstract contract KeeperRegistryBase2_1 is ConfirmedOwner, ExecutionPrevention {
return (false, dedupID);
}
if (transmitInfo.upkeep.balance < transmitInfo.maxLinkPayment) {
// Can happen due to flucutations in gas / link prices
// Can happen due to fluctuations in gas / link prices
emit InsufficientFundsUpkeepReport(upkeepId, rawTrigger);
return (false, dedupID);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ contract KeeperRegistryLogicB2_1 is KeeperRegistryBase2_1 {
}

/**
* @notice allows the owner to withdraw any LINK accidentially sent to the contract
* @notice allows the owner to withdraw any LINK accidentally sent to the contract
*/
function recoverFunds() external onlyOwner {
uint256 total = i_link.balanceOf(address(this));
Expand Down

0 comments on commit 9ca4cba

Please sign in to comment.