Skip to content

Commit

Permalink
change supported protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
heytdep committed Nov 6, 2024
1 parent 43a3ed8 commit efd3537
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions soroban-env-common/env.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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
}
]
},
Expand Down

0 comments on commit efd3537

Please sign in to comment.