Skip to content

Commit

Permalink
Update link to Gas docs (#2137)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Müller authored Mar 6, 2024
1 parent 6bd59dd commit f55936e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/env/src/call/call_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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**
///
Expand All @@ -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 {
Expand Down

0 comments on commit f55936e

Please sign in to comment.