Expose the extrinsic hash from TxProgress (#614)

This commit is contained in:
James Wilson
2022-08-10 11:59:49 +01:00
committed by GitHub
parent cb43ffe03a
commit 7e51b3ed66
+5
View File
@@ -64,6 +64,11 @@ impl<T: Config, C> TxProgress<T, C> {
ext_hash,
}
}
/// Return the hash of the extrinsic.
pub fn extrinsic_hash(&self) -> T::Hash {
self.ext_hash
}
}
impl<T: Config, C: OnlineClientT<T>> TxProgress<T, C> {