Skip to content

Commit

Permalink
fix: useless match
Browse files Browse the repository at this point in the history
  • Loading branch information
rvcas committed Oct 23, 2024
1 parent 01048ec commit e7a702f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/uplc/src/machine/cek.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,7 @@ impl<'a> Machine<'a> {
}
};

state = match step {
Ok(new_state) => new_state,
Err(error) => return Err(error),
};
state = step?;
}
}

Expand Down

0 comments on commit e7a702f

Please sign in to comment.