All Questions
1 question
0
votes
1
answer
20
views
Function inside constructor is called from which address?
interface token {
function transferFrom(address _from, address _to, uint256 _value) external returns (bool success);}
contract CampaignFactory{ token public token_instance;
constructor()...