From 6963c8456bf22c871840bb9a9123b3e3365a9bed Mon Sep 17 00:00:00 2001 From: Frank Bell Date: Wed, 18 Dec 2024 15:46:40 +0000 Subject: [PATCH] style: formatting --- crates/pop-contracts/src/up.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/pop-contracts/src/up.rs b/crates/pop-contracts/src/up.rs index 3d8293f1..3ed614c7 100644 --- a/crates/pop-contracts/src/up.rs +++ b/crates/pop-contracts/src/up.rs @@ -284,7 +284,6 @@ pub async fn submit_signed_payload( /// blockchain. /// /// # Arguments -/// /// * `instantiate_exec` - the preprocessed data to instantiate a contract. pub async fn dry_run_gas_estimate_instantiate( instantiate_exec: &InstantiateExec, @@ -322,7 +321,6 @@ pub struct UploadDryRunResult { /// Performs a dry-run for uploading a contract without modifying the state of the blockchain. /// /// # Arguments -/// /// * `upload_exec` - the preprocessed data to upload a contract. pub async fn dry_run_upload( upload_exec: &UploadExec, @@ -354,7 +352,6 @@ pub struct ContractInfo { /// Instantiate a contract. /// /// # Arguments -/// /// * `instantiate_exec` - the preprocessed data to instantiate a contract. /// * `gas_limit` - maximum amount of gas to be used for this call. pub async fn instantiate_smart_contract( @@ -374,7 +371,6 @@ pub async fn instantiate_smart_contract( /// Upload a contract. /// /// # Arguments -/// /// * `upload_exec` - the preprocessed data to upload a contract. pub async fn upload_smart_contract( upload_exec: &UploadExec,