You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.
If you instantiate a contract. Which has public functions defined, these functions are not shown when trying code completion for this contract instance.
Example code to reproduce this issue:
contract targetInterface{
function deposit() public payable;
function withdraw(uint withdrawAmount) public;
}
contract MyContract {
targetInterface bankAddress = targetInterface(0x2D5848F4);
uint amount = 1 ether;
function deposit() public payable {
bankAddress. ;
}
}
The text was updated successfully, but these errors were encountered:
If you instantiate a contract. Which has public functions defined, these functions are not shown when trying code completion for this contract instance.
Example code to reproduce this issue:
The text was updated successfully, but these errors were encountered: