mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-02-22 15:18:14 +00:00
22 lines
398 B
Solidity
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
|
|
)
|
|
{
|
|
|
|
}
|
|
} |