I have a struct in solidity defined as follows:
struct Batch{
address payable owner;
address payable[] precedentsOwners;
uint[] precedentsBatches;
}
I want to create a function that allows me to append a list of owners to this struct, but i get a lot of errors... Is there any way to do this?
Thanks a lot.