Skip to content

Commit

Permalink
Decrease max oracles
Browse files Browse the repository at this point in the history
  • Loading branch information
tsudmi committed Aug 8, 2023
1 parent 4d3e710 commit 5b0aa25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/keeper/KeeperOracles.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {IKeeperOracles} from '../interfaces/IKeeperOracles.sol';
*/
abstract contract KeeperOracles is Ownable2Step, EIP712, IKeeperOracles {
uint256 internal constant _signatureLength = 65;
uint256 private constant _maxOracles = 50;
uint256 private constant _maxOracles = 30;

/// @inheritdoc IKeeperOracles
mapping(address => bool) public override isOracle;
Expand Down

0 comments on commit 5b0aa25

Please sign in to comment.