c9639c3860
* tests: add solidity test suite * tests: remove require strings * Update tests-solidity/init-test-node.sh * Update tests-solidity/init-test-node.sh Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
16 lines
274 B
Solidity
16 lines
274 B
Solidity
pragma solidity 0.4.24;
|
|
|
|
import "../Initializable.sol";
|
|
import "../Petrifiable.sol";
|
|
|
|
|
|
contract LifecycleMock is Initializable, Petrifiable {
|
|
function initializeMock() public {
|
|
initialized();
|
|
}
|
|
|
|
function petrifyMock() public {
|
|
petrify();
|
|
}
|
|
}
|