Use explicit imports (#4399)
Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com> Co-authored-by: ernestognw <ernestognw@gmail.com>
This commit is contained in:
@ -2,11 +2,13 @@
|
||||
// OpenZeppelin Contracts (last updated v4.9.0) (governance/utils/Votes.sol)
|
||||
pragma solidity ^0.8.19;
|
||||
|
||||
import "../../interfaces/IERC5805.sol";
|
||||
import "../../utils/Context.sol";
|
||||
import "../../utils/Nonces.sol";
|
||||
import "../../utils/cryptography/EIP712.sol";
|
||||
import "../../utils/structs/Checkpoints.sol";
|
||||
import {IERC5805} from "../../interfaces/IERC5805.sol";
|
||||
import {Context} from "../../utils/Context.sol";
|
||||
import {Nonces} from "../../utils/Nonces.sol";
|
||||
import {EIP712} from "../../utils/cryptography/EIP712.sol";
|
||||
import {Checkpoints} from "../../utils/structs/Checkpoints.sol";
|
||||
import {SafeCast} from "../../utils/math/SafeCast.sol";
|
||||
import {ECDSA} from "../../utils/cryptography/ECDSA.sol";
|
||||
|
||||
/**
|
||||
* @dev This is a base abstract contract that tracks voting units, which are a measure of voting power that can be
|
||||
|
||||
Reference in New Issue
Block a user