Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update link to Gas docs #2137

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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