From 111ee014a7cca1cd6b4584ed814ff3a8ffee74b3 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Wed, 6 Mar 2024 13:34:43 +0100 Subject: [PATCH] Update link to Gas docs --- crates/env/src/call/call_builder.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/env/src/call/call_builder.rs b/crates/env/src/call/call_builder.rs index 4970e85a34..40965cf31f 100644 --- a/crates/env/src/call/call_builder.rs +++ b/crates/env/src/call/call_builder.rs @@ -712,7 +712,7 @@ where /// /// `ref_time` refers to the amount of computational time that can be /// used for execution, in picoseconds. You can find more info - /// [here](https://use.ink/basics/cross-contract-calling/). + /// [here](https://use.ink/basics/gas). pub fn ref_time_limit(self, ref_time_limit: Gas) -> Self { let call_type = self.call_type.value(); CallBuilder { @@ -729,7 +729,7 @@ where /// /// `proof_size` refers to the amount of storage in bytes that a transaction /// is allowed to read. You can find more info - /// [here](https://use.ink/basics/cross-contract-calling/). + /// [here](https://use.ink/basics/gas). /// /// **Note** /// @@ -750,7 +750,7 @@ where /// /// The `storage_deposit_limit` specifies the amount of user funds that /// can be charged for creating storage. You can find more info - /// [here](https://use.ink/basics/cross-contract-calling/). + /// [here](https://use.ink/basics/gas). pub fn storage_deposit_limit(self, storage_deposit_limit: E::Balance) -> Self { let call_type = self.call_type.value(); CallBuilder {