Skip to content

Commit afb0088

Browse files
Enhance transactions.md with execution status details (#2985)
Added details about the `wait_until` parameter and `final_execution_status` values in the transactions documentation.
1 parent 6086fef commit afb0088

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

docs/api/rpc/transactions.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -680,6 +680,15 @@ All the methods listed above have `wait_until` request parameter, and
680680
`final_execution_status` response value. They correspond to the same enum
681681
`TxExecutionStatus`. See the detailed explanation for all the options:
682682

683+
| wait_until | is included in a block | is included in a final block | executed | executed and execution result final
684+
|---|---|---|---|---
685+
| None | ? | ? | ? | ?
686+
| Included | yes | ? | ? | ?
687+
| ExecutedOptimistic | yes | ? | yes | ?
688+
| IncludedFinal | yes | yes | ?| ?
689+
| Executed | yes | yes | yes | ?
690+
| Final | yes | yes | yes | yes
691+
683692
```rust
684693
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
685694
pub enum TxExecutionStatus {

0 commit comments

Comments
 (0)