Skip to content

Instantly share code, notes, and snippets.

@weserickson
weserickson / getallpeople.solpp
Created September 17, 2021 20:52
Demo of getter to grab data from array of structs.
pragma soliditypp ^0.4.3;
// modification of answer from
// https://stackoverflow.com/questions/48877910/how-can-i-return-an-array-of-struct-in-solidity
// for soliditypp
contract Project
{
struct Person {
address addr;