Skip to content

Commit

Permalink
Add find_last for block types (#825)
Browse files Browse the repository at this point in the history
* add find_last for block types

* fix pres for find_last for block types
  • Loading branch information
lean-apple authored Feb 14, 2023
1 parent 7b0e06c commit 0c7f850
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions subxt/src/blocks/block_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,15 @@ impl<T: Config> ExtrinsicEvents<T> {
self.find::<Ev>().next().transpose()
}

/// Iterate through the transaction events using metadata to dynamically decode and skip
/// them, and return the last event found which decodes to the provided `Ev` type.
///
/// This works in the same way that [`events::Events::find_last()`] does, with the
/// exception that it ignores events not related to the submitted extrinsic.
pub fn find_last<Ev: events::StaticEvent>(&self) -> Result<Option<Ev>, Error> {
self.find::<Ev>().last().transpose()
}

/// Find an event in those associated with this transaction. Returns true if it was found.
///
/// This works in the same way that [`events::Events::has()`] does, with the
Expand Down

0 comments on commit 0c7f850

Please sign in to comment.