Replies: 1 comment
-
@rkpayah If it is a practice then just add PRACTICE in your title at the start. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
'''solidity
function fund() public payable {
require (msg.value.getConversionRate() >= MINIMUM_USD, "You need to spend more Eth!");
addressToAmountFunded[msg.sender] += msg.value;
funders.push(msg.sender);
}
'''
Beta Was this translation helpful? Give feedback.
All reactions