Skip to content

Commit b9faedb

Browse files
authored
chore: drop unused libraries (#82)
Expected to fix recallnet/ipc#518
1 parent 5759b36 commit b9faedb

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/token/ValidatorRewarder.sol

-5
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,18 @@ pragma solidity ^0.8.26;
44
import {IValidatorRewarder} from "../interfaces/IValidatorRewarder.sol";
55

66
import {Consensus, SubnetID} from "../types/CommonTypes.sol";
7-
import {SubnetIDHelper} from "../util/SubnetIDHelper.sol";
87
import {Recall} from "./Recall.sol";
98

109
import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/contracts/access/OwnableUpgradeable.sol";
1110
import {UUPSUpgradeable} from "@openzeppelin/contracts-upgradeable/contracts/proxy/utils/UUPSUpgradeable.sol";
1211

13-
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
1412
import {UD60x18, ud} from "@prb/math/UD60x18.sol";
1513

1614
/// @title ValidatorRewarder
1715
/// @notice This contract is responsible for distributing rewards to validators.
1816
/// @dev The rewarder is responsible for distributing the inflation to the validators.
1917
/// @dev The rewarder is called by the subnet actor when a validator claims rewards.
2018
contract ValidatorRewarder is IValidatorRewarder, UUPSUpgradeable, OwnableUpgradeable {
21-
using SubnetIDHelper for SubnetID;
22-
using SafeERC20 for Recall;
23-
2419
// ========== STATE VARIABLES ==========
2520

2621
/// @notice Indicates whether the rewarder is active or not

0 commit comments

Comments
 (0)