fix tests, reorder constructor parameters

This commit is contained in:
poma 2019-10-06 08:36:01 +03:00
parent a77c04ea5a
commit c889a88b4d
5 changed files with 27 additions and 18 deletions

View file

@ -18,11 +18,11 @@ contract ERC20Mixer is Mixer {
constructor(
address _verifier,
uint256 _denomination,
uint8 _merkleTreeHeight,
uint256 _emptyElement,
address payable _operator,
address _token,
uint256 _denomination
address _token
) Mixer(_verifier, _denomination, _merkleTreeHeight, _emptyElement, _operator) public {
token = _token;
}