Skip to content

Commit

Permalink
Reduce size to 100 for smaller gas cost
Browse files Browse the repository at this point in the history
  • Loading branch information
darunrs committed Dec 6, 2024
1 parent 938f521 commit 38ca245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lazer/contracts/evm/src/PythLazer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
contract PythLazer is OwnableUpgradeable, UUPSUpgradeable {
TrustedSignerInfo[2] private deprecatedTrustedSigners;
uint256 public verification_fee;
TrustedSignerInfo[200] internal trustedSigners;
TrustedSignerInfo[100] internal trustedSigners;

struct TrustedSignerInfo {
address pubkey;
Expand Down

0 comments on commit 38ca245

Please sign in to comment.