Skip to content

Commit

Permalink
feat: change block range accepted to 86400
Browse files Browse the repository at this point in the history
  • Loading branch information
Julink-eth committed Jul 15, 2024
1 parent 7b0edfa commit e8967d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/linea-ccip-gateway/contracts/TestL1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {IEVMVerifier} from "linea-state-verifier/contracts/IEVMVerifier.sol";
contract TestL1 is EVMFetchTarget {
using EVMFetcher for EVMFetcher.EVMFetchRequest;

uint256 constant L2_BLOCK_RANGE_ACCEPTED = 96400;
uint256 constant L2_BLOCK_RANGE_ACCEPTED = 86400;

IEVMVerifier verifier; // Slot 0
address target;
Expand Down
2 changes: 1 addition & 1 deletion packages/linea-ens-resolver/contracts/L1Resolver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ contract L1Resolver is
uint256 constant VERSIONABLE_HASHES_SLOT = 3;
uint256 constant VERSIONABLE_TEXTS_SLOT = 10;
// To check how old is the value/proof returned and is in the acceptable range
uint256 constant L2_BLOCK_RANGE_ACCEPTED = 96400;
uint256 constant L2_BLOCK_RANGE_ACCEPTED = 86400;
string public graphqlUrl;

event TargetSet(bytes name, address target);
Expand Down

0 comments on commit e8967d6

Please sign in to comment.