chapter21-code-2

PHOTO EMBED

Thu Mar 30 2023 11:31:47 GMT+0000 (Coordinated Universal Time)

Saved by @RareSkills

function howMuchEtherYouHave() public view returns (uint256) {
	return msg.sender.balance;
}

function howMuchEtherTheyHave(address them) public view returns (uint256) {
	return them.balance;
}
content_copyCOPY