contract Test { uint256[] m_test; function test(uint256[] memory data) public { m_test = data; } } Guys the gas cost of the test funtion is inifinite...
Why does openzepplin is putting unchecked mark on ^0.8.0 version ? Won't that cause wrapping of values and no revert is occured in case of overflow/underflow?
any ta ?