sui_graphql_rpc/types/
execution_result.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use super::transaction_block_effects::TransactionBlockEffects;
use async_graphql::*;

/// The result of an execution, including errors that occurred during said execution.
#[derive(SimpleObject, Clone)]
pub(crate) struct ExecutionResult {
    /// The errors field captures any errors that occurred during execution
    pub errors: Option<Vec<String>>,

    /// The effects of the executed transaction. Since the transaction was just executed
    /// and not indexed yet, fields including `balance_changes`, `timestamp` and `checkpoint`
    /// are not available.
    pub effects: TransactionBlockEffects,
}