chapter11-code-6

PHOTO EMBED

Thu Mar 30 2023 10:09:03 GMT+0000 (Coordinated Universal Time)

Saved by @RareSkills

contract BrokenContract {
	mapping(uint256 => uint256) public someMap;

	function wontWork() public view returns (mapping(uint256 => uint256)) {
		return someMap;
	}
}
content_copyCOPY