From 1d9e7f9e1ea328a23b8ae517b1f3c8d937eb0735 Mon Sep 17 00:00:00 2001 From: librelois <c@elo.tf> Date: Mon, 5 Sep 2022 16:56:15 +0200 Subject: [PATCH] tests(cucumber): comment log extrinsic encoded --- end2end-tests/tests/common/mod.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/end2end-tests/tests/common/mod.rs b/end2end-tests/tests/common/mod.rs index e9ae2cb03..c7fcdad21 100644 --- a/end2end-tests/tests/common/mod.rs +++ b/end2end-tests/tests/common/mod.rs @@ -132,14 +132,7 @@ pub async fn create_block_with_extrinsic( client: &Client, extrinsic: SignedSubmittableExtrinsic, ) -> Result<subxt::tx::TxEvents<GdevConfig>> { - /*// Get a hash of the extrinsic (we'll need this later). - use subxt::sp_runtime::traits::Hash as _; - let ext_hash = <GdevConfig as subxt::Config>::Hashing::hash_of(&encoded_extrinsic); - // Submit and watch for transaction progress. - let sub = client.rpc().submit_extrinsic(encoded_extrinsic).await?; - let watcher = TxProgress::new(sub, client, ext_hash);*/ - - println!("extrinsic encoded: {}", hex::encode(extrinsic.encoded())); + //println!("extrinsic encoded: {}", hex::encode(extrinsic.encoded())); let watcher = extrinsic.submit_and_watch().await?; -- GitLab