chapter11-code-5

PHOTO EMBED

Thu Mar 30 2023 10:08:23 GMT+0000 (Coordinated Universal Time)

Saved by @RareSkills

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

	function wontWork() public view {
		for (key in someMap) {
			// do something
		}
	}
}
content_copyCOPY