You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
971 B
Solidity
35 lines
971 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "../governance/utils/Votes.sol";
|
|
|
|
abstract contract VotesMock is Votes {
|
|
mapping(address => uint256) private _balances;
|
|
mapping(uint256 => address) private _owners;
|
|
|
|
function getTotalSupply() public view returns (uint256) {
|
|
return _getTotalSupply();
|
|
}
|
|
|
|
function delegate(address account, address newDelegation) public {
|
|
return _delegate(account, newDelegation);
|
|
}
|
|
|
|
function _getVotingUnits(address account) internal view override returns (uint256) {
|
|
return _balances[account];
|
|
}
|
|
|
|
function _mint(address account, uint256 voteId) internal {
|
|
_balances[account] += 1;
|
|
_owners[voteId] = account;
|
|
_transferVotingUnits(address(0), account, 1);
|
|
}
|
|
|
|
function _burn(uint256 voteId) internal {
|
|
address owner = _owners[voteId];
|
|
_balances[owner] -= 1;
|
|
_transferVotingUnits(owner, address(0), 1);
|
|
}
|
|
}
|