This line has a `nil` in the first argument: ```lua local value = contract.call(nil, "get_value") ``` It fails with this error: ``` bad argument #2 to 'call' (string expected, got nil) /\ ``` It should be `#1` instead of `#2`
This line has a
nilin the first argument:It fails with this error:
It should be
#1instead of#2