Closed kroggen closed 1 year ago
Current code is using hardfork version 2 when a new contract is deployed by an existing contract, via contract.deploy()
contract.deploy()
This fix makes the new Lua state to have the same hardfork version as the parent Lua state
This change probably affects the gas computation on transactions that deploy a contract, like ARC1 and ARC2 factories, so a sync test is required
Current code is using hardfork version 2 when a new contract is deployed by an existing contract, via
contract.deploy()
This fix makes the new Lua state to have the same hardfork version as the parent Lua state