diff --git a/subxt/src/tx/tx_progress.rs b/subxt/src/tx/tx_progress.rs index 50b02f4844..4143468928 100644 --- a/subxt/src/tx/tx_progress.rs +++ b/subxt/src/tx/tx_progress.rs @@ -64,6 +64,11 @@ impl TxProgress { ext_hash, } } + + /// Return the hash of the extrinsic. + pub fn extrinsic_hash(&self) -> T::Hash { + self.ext_hash + } } impl> TxProgress {