ens-usernames/contracts/mocks/Dummy2SlashMechanism.sol

22 lines
398 B
Solidity
Raw Permalink Normal View History

// 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
)
{
}
}