Skip to content

Commit

Permalink
Explicit imports (#424)
Browse files Browse the repository at this point in the history
Co-authored-by: Shahul Hameed <[email protected]>
  • Loading branch information
DanielVF and shahthepro authored May 28, 2024
1 parent 88d9982 commit 532f529
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/FixedRateRewardsSource.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity 0.8.10;

import {Governable} from "./Governable.sol";
import {Initializable} from "./upgrades/Initializable.sol";
import "OpenZeppelin/[email protected]/contracts/token/ERC20/IERC20.sol";
import {IERC20} from "OpenZeppelin/[email protected]/contracts/token/ERC20/IERC20.sol";

contract FixedRateRewardsSource is Governable, Initializable {
error UnauthorizedCaller();
Expand Down
5 changes: 3 additions & 2 deletions contracts/Migrator.sol
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;

import "OpenZeppelin/[email protected]/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "./Governable.sol";
import {ERC20Burnable} from
"OpenZeppelin/[email protected]/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import {Governable} from "./Governable.sol";

interface IStaking {
function delegates(address staker) external view returns (address);
Expand Down

0 comments on commit 532f529

Please sign in to comment.