These is the function I have:
pragma solidity >=0.4.22 <0.6.0;
contract store {
string public storage_;
function store_it(string memory s) public {
storage_=s;
}
}
And in console:
stor = store.at(store.address)
stor.store_it("string")
TypeError: stor.store_it is not a function
Please help.