Skip to content

Commit

Permalink
Merge branch 'master' into bh/644-fix-compile-errors
Browse files Browse the repository at this point in the history
  • Loading branch information
haerdib authored Nov 28, 2023
2 parents 6f7da77 + bec07d4 commit 49fe2b6
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/api/rpc_api/author.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ pub trait SubmitAndWatch {

/// Submit an extrinsic an return a Subscription
/// to watch the extrinsic progress.
///
/// This method is blocking if the sync-api feature is activated
async fn submit_and_watch_extrinsic<Address, Call, Signature, SignedExtra>(
&self,
extrinsic: UncheckedExtrinsicV4<Address, Call, Signature, SignedExtra>,
Expand All @@ -101,6 +103,8 @@ pub trait SubmitAndWatch {

/// Submit an encoded, opaque extrinsic an return a Subscription to
/// watch the extrinsic progress.
///
/// This method is blocking if the sync-api feature is activated
async fn submit_and_watch_opaque_extrinsic(
&self,
encoded_extrinsic: &Bytes,
Expand All @@ -125,7 +129,7 @@ pub trait SubmitAndWatch {
/// - extrinsic hash
/// - last known extrinsic (transaction) status
///
/// This method is blocking.
/// This method is blocking if the sync-api feature is activated
async fn submit_and_watch_extrinsic_until<Address, Call, Signature, SignedExtra>(
&self,
extrinsic: UncheckedExtrinsicV4<Address, Call, Signature, SignedExtra>,
Expand Down Expand Up @@ -156,7 +160,7 @@ pub trait SubmitAndWatch {
/// - extrinsic hash
/// - last known extrinsic (transaction) status
///
/// This method is blocking.
/// This method is blocking if the sync-api feature is activated
async fn submit_and_watch_opaque_extrinsic_until(
&self,
encoded_extrinsic: &Bytes,
Expand All @@ -172,7 +176,8 @@ pub trait SubmitAndWatch {
/// - if watched until at least `InBlock`:
/// hash of the block the extrinsic was included in
/// - last known extrinsic (transaction) status
/// This method is blocking.
///
/// This method is blocking if the sync-api feature is activated
async fn submit_and_watch_extrinsic_until_without_events<
Address,
Call,
Expand All @@ -198,7 +203,8 @@ pub trait SubmitAndWatch {
/// - if watched until at least `InBlock`:
/// hash of the block the extrinsic was included in
/// - last known extrinsic (transaction) status
/// This method is blocking.
///
/// This method is blocking if the sync-api feature is activated
async fn submit_and_watch_opaque_extrinsic_until_without_events(
&self,
encoded_extrinsic: &Bytes,
Expand Down

0 comments on commit 49fe2b6

Please sign in to comment.