function test(uint256[] memory data) public
{
m_test = data;
}
}
Guys the gas cost of the test funtion is inifinite on solc compiler, any reason ? I couldn't understand that huge pile of assembly code at all. I stumbled upon this code
can anyone help me ?
probably because the compiler has no idea how many entries the array has. you have to pay for all data you input
Обсуждают сегодня