mapping(IERC => contract) public testing;
delete testing[IERC];
In the above code snippet I want to delete contract type (value) using the delete keyword can it be possible?
mapping(IERC => contract) public testing;
delete testing[IERC];
In the above code snippet I want to delete contract type (value) using the delete keyword can it be possible?