diff --git a/soroban-env-common/env.json b/soroban-env-common/env.json index ac8af0b11..2adfeeedf 100644 --- a/soroban-env-common/env.json +++ b/soroban-env-common/env.json @@ -1580,7 +1580,7 @@ ], "return": "Val", "docs": "Calls a function in another contract with arguments contained in vector `args`. If the call is successful, returns the result of the called function. Traps otherwise. This functions enables re-entrancy in the immediate cross-contract call.", - "min_supported_protocol": 21 + "min_supported_protocol": 22 }, { "export": "2", @@ -1601,7 +1601,7 @@ ], "return": "Val", "docs": "Calls a function in another contract with arguments contained in vector `args`, returning either the result of the called function or an `Error` if the called function failed. The returned error is either a custom `ContractError` that the called contract returns explicitly, or an error with type `Context` and code `InvalidAction` in case of any other error in the called contract (such as a host function failure that caused a trap). `try_call` might trap in a few scenarios where the error can't be meaningfully recovered from, such as running out of budget. This functions enables re-entrancy in the immediate cross-contract call.", - "min_supported_protocol": 21 + "min_supported_protocol": 22 } ] },