VotingUpgrader
A contract that executes a short series of upgrade calls that must be performed atomically as a part of the upgrade process for Voting.sol.
Note: the complete upgrade process requires more than just the transactions in this contract. These are only the ones that need to be performed atomically.
constructor(address _governor, address _existingVoting, address _newVoting, address _finder, address _setMigratedAddress)
public
Removes an address from the whitelist.
Parameters:
-
_governor
: the Governor contract address. -
_existingVoting
: the current/existing Voting contract address. -
_newVoting
: the new Voting deployment address. -
_finder
: the Finder contract address. -
_setMigratedAddress
: the address to set migrated. This address will be able to continue making calls to old voting contract (used to claim rewards on others' behalf). Note: this address can always be changed by the voters.