Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellorigotti committed Oct 16, 2023
1 parent 71d1c7c commit 6321577
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions api/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,15 +147,15 @@ impl<
{
async fn dry_run(
&self,
_call: RuntimeCall,
_at: Option<state_chain_runtime::Hash>,
call: RuntimeCall,
at: Option<state_chain_runtime::Hash>,
) -> Result<Bytes> {
let _ = self
.base_rpc_client
.raw_rpc_client
.dry_run(Encode::encode(&call).into(), at)
.await;
Ok(Bytes::from(vec![]))
// Ok(self
// .base_rpc_client
// .raw_rpc_client
// .dry_run(Encode::encode(&call).into(), at)
// .await?)
}
}

Expand Down

0 comments on commit 6321577

Please sign in to comment.