Add find_last for block types (#825)

* add find_last for block types

* fix pres for find_last for block types
This commit is contained in:
Léa Narzis
2023-02-14 17:46:29 +00:00
committed by GitHub
parent 7b0e06cf8a
commit 0c7f850549
+9
View File
@@ -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