Say I deploy a contract with a mapping (uint => bool) public addressList;
on each call to the contract, the address of the caller is stored in the mapping above and set to true (addressList[_address] = true)
this means that the addressList keeps growing on each unique call
If a contract has it’s own storage space, does that mean each subsequent call to the contract will cost more gas?
How does this affect gas price on calls that retrieve from the map? eg: addressList[_address]