Closed ghost closed 1 year ago
I think it's easier to understand if the interface is defined inside the current example.
contract Callee {
// code
}
// Define interface if code of callee is not available or not needed
interface ICallee {
}
contract Caller {
// code
}
Relevant PR https://github.com/solidity-by-example/solidity-by-example.github.io/pull/247