Skip to content

Commit

Permalink
chore: use archive node rpc for fork test
Browse files Browse the repository at this point in the history
  • Loading branch information
sandybradley committed Jul 29, 2024
1 parent f945604 commit 41b8b7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/libraries/TickMath.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity =0.8.8;
pragma solidity ^0.8.8;

/// @title Math library for computing sqrt prices from ticks and vice versa
/// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports
Expand Down
3 changes: 1 addition & 2 deletions test/BaseCaptiveTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ contract BaseCaptiveTest is Test {
address public User02 = address(0x2);

function setUp() public {
uint256 mainnetFork = vm.createFork("https://eth.llamarpc.com");
uint256 mainnetFork = vm.createFork("https://eth.merkle.io", 20185705);
vm.selectFork(mainnetFork);
vm.rollFork(20185705);

address self = address(this);

Expand Down

0 comments on commit 41b8b7a

Please sign in to comment.