Skip to content

Commit

Permalink
fixup! Merge branch 'grarco/tx-batch' (#3103)
Browse files Browse the repository at this point in the history
  • Loading branch information
grarco committed May 17, 2024
1 parent 6d4b17d commit 1d45b56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion crates/sdk/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,8 @@ pub struct TxResponse {
pub gas_used: Gas,
}

/// Determines a result of an inner tx from [`TxResponse::inner_tx_result`].
/// Determines a result of an inner tx from
/// [`namada_tx::data::BatchedTxResult`].
pub enum InnerTxResult<'a> {
/// Tx is applied and accepted by all VPs
Success(&'a BatchedTxResult),
Expand Down
2 changes: 1 addition & 1 deletion crates/tx/src/data/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ pub struct TxResult<T> {
/// Storage keys touched by the wrapper transaction
pub wrapper_changed_keys: BTreeSet<storage::Key>,
/// The results of the batch, indexed by the hash of the specific
/// [`Commitments`]
/// [`crate::types::TxCommitments`]
pub batch_results: BatchResults<T>,
}

Expand Down

0 comments on commit 1d45b56

Please sign in to comment.