In my smart contract, I have the following property
struct MyStruct {
uint256 property1;
uint256 property2;
}
mapping(address => MyStruct) private structs;
In one function, this struct is getting filled
...
structs[msg.sender] = MyStruct(
_property1,
_property
);
Now my question, is the gas fee increased everytime the structs property is getting bigger, cause the nodes in the blockchain have to store more data?