Skip to content

Commit

Permalink
fix: minor changes
Browse files Browse the repository at this point in the history
Signed-off-by: Tomás Migone <[email protected]>
  • Loading branch information
tmigone committed Oct 1, 2024
1 parent 41ad6e1 commit 163f8f2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ abstract contract HorizonStakingV1Storage {
mapping(address serviceProvider => address rewardsDestination) internal __DEPRECATED_rewardsDestination;

/// @dev Address of the counterpart Staking contract on L1/L2
/// Used for the transfer tools.
/// Deprecated, transfer tools no longer enabled.
address internal __DEPRECATED_counterpartStakingAddress;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ abstract contract SubgraphServiceSharedTest is HorizonStakingSharedTest {
}

modifier useDelegation(uint256 tokens) {
// 1e18 is the minimum delegation amount until L2 transfers are removed
vm.assume(tokens > 1e18);
vm.assume(tokens > 1);
vm.assume(tokens < 10_000_000_000 ether);
(, address msgSender,) = vm.readCallers();
resetPrank(users.delegator);
Expand Down

0 comments on commit 163f8f2

Please sign in to comment.