Stop injecting coverage hash fn definition in interfaces (#383)
parent
7bc952c74f
commit
1d093e9732
@ -0,0 +1,12 @@ |
||||
pragma solidity ^0.5.8; |
||||
|
||||
interface IInterface { |
||||
event Assign(address indexed token, address indexed from, address indexed to, uint256 amount); |
||||
event Withdraw(address indexed token, address indexed from, address indexed to, uint256 amount); |
||||
|
||||
// TODO: remove init from the interface, all the initialization should be outside the court |
||||
function init(address _owner) external; |
||||
|
||||
function assign(uint _token, address _to, uint256 _amount) external; |
||||
function withdraw(uint _token, address _to, uint256 _amount) external; |
||||
} |
Loading…
Reference in new issue