Merge pull request #13 from logos-co:3esmit/issue8
Ownership cannot be revoked/petrified
This commit is contained in:
commit
6dc3fd00f4
|
@ -3,7 +3,7 @@ pragma solidity ^0.8.18;
|
|||
|
||||
import { TokenController } from "@vacp2p/minime/contracts/TokenController.sol";
|
||||
import { MiniMeToken } from "@vacp2p/minime/contracts/MiniMeToken.sol";
|
||||
import "./Owned.sol";
|
||||
import "@openzeppelin/contracts/access/Ownable2Step.sol";
|
||||
|
||||
/*
|
||||
Copyright 2017, Jordi Baylina
|
||||
|
@ -29,7 +29,7 @@ import "./Owned.sol";
|
|||
/// The contract allows for SNT transfers and transferFrom and implements the
|
||||
/// logic for transferring control of the token to the network when the offering
|
||||
/// asks it to do so.
|
||||
contract SNTPlaceHolder is TokenController, Owned {
|
||||
contract SNTPlaceHolder is TokenController, Ownable2Step {
|
||||
MiniMeToken public snt;
|
||||
|
||||
constructor(address _owner, address payable _snt) {
|
||||
|
|
Loading…
Reference in New Issue