Suppose i have a loop. Here user is a struct of which player is an address.
address[] memory addrs = new address[](n);
for(uint i=0;i<n;i++){
addrs[i] = user.player;
}
return addrs;
This is a view function so i know i wont have to pay to run it. Is this going to fail if the value of n increases beyond a point? Im confused about the gas block limit.