Skip to content

Instantly share code, notes, and snippets.

@ac12644
Created October 31, 2022 20:00
Show Gist options
  • Save ac12644/969ed4864d639b69703556d333deda10 to your computer and use it in GitHub Desktop.
Save ac12644/969ed4864d639b69703556d333deda10 to your computer and use it in GitHub Desktop.
...
function myDonations() public view returns (
uint256[] memory values,
uint256[] memory dates
)
{
uint256 count = myDonationsCount();
values = new uint256[](count);
dates = new uint256[](count);
for (uint256 i = 0; i < count; i++) {
Donation storage donation = _donations[msg.sender][i];
values[i] = donation.value;
dates[i] = donation.date;
}
return (values, dates);
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment