Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickkuo committed Nov 24, 2024
1 parent f92c416 commit 856c895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sui-rosetta/src/operations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ impl Operations {
) -> Result<Vec<Operation>, Error> {
Ok(match tx {
SuiTransactionBlockKind::ProgrammableTransaction(pt)
if status == Some(OperationStatus::Success) =>
if status != Some(OperationStatus::Failure) =>
{
Self::parse_programmable_transaction(sender, status, pt)?
}
Expand Down

0 comments on commit 856c895

Please sign in to comment.