Skip to content

Commit

Permalink
Merge pull request #13409 from UNOFFICIALbgd/dev
Browse files Browse the repository at this point in the history
Fix typo in "transactions" page, missing full stop
  • Loading branch information
corwintines authored Jul 24, 2024
2 parents 516bd39 + 26fac24 commit 0a2ccde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/content/developers/docs/transactions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Gas is required for any transaction that involves a smart contract.

Smart contracts can also contain functions known as [`view`](https://docs.soliditylang.org/en/latest/contracts.html#view-functions) or [`pure`](https://docs.soliditylang.org/en/latest/contracts.html#pure-functions) functions, which do not alter the state of the contract. As such, calling these functions from an EOA will not require any gas. The underlying RPC call for this scenario is [`eth_call`](/developers/docs/apis/json-rpc#eth_call)

Unlike when accessed using `eth_call`, these `view` or `pure` functions are also commonly called internally (ie. from the contract itself or from another contract) which does cost gas.
Unlike when accessed using `eth_call`, these `view` or `pure` functions are also commonly called internally (i.e. from the contract itself or from another contract) which does cost gas.

## Transaction lifecycle {#transaction-lifecycle}

Expand Down

0 comments on commit 0a2ccde

Please sign in to comment.