fallback
This function emits the SafeReceived
event when it receives a payment.
Usage
_10interface ISafe {_10 fallback() external;_10}_10_10contract Example {_10 function example() ... {_10 (ISafe safe).fallback();_10 }_10}
Events
SafeReceived
_10event SafeReceived(address sender, uint256 value)
Emitted when the Safe contract receives a payment.