ens-usernames/contracts/mocks/Dummy2SlashMechanism.sol
Ricardo Guilherme Schmidt b33cf37bac
Update solidity to 0.6.2 and to openzeppelin-contracts 3.2.0 (#119)
* solc 0.6.2 + openzeppelin-contracts 3.2.0

* Fixes #114
2020-09-25 16:47:08 -03:00

22 lines
398 B
Solidity

// SPDX-License-Identifier: CC0-1.0
pragma solidity 0.6.2;
import "../registry/SlashMechanism.sol";
contract Dummy2SlashMechanism is SlashMechanism {
constructor(
uint256 _usernameMinLength,
bytes32 _reservedUsernamesMerkleRoot
)
public
SlashMechanism(
_usernameMinLength,
_reservedUsernamesMerkleRoot
)
{
}
}