Skip to content

Commit

Permalink
Merge pull request #707 from pegahcarter/patch-1
Browse files Browse the repository at this point in the history
docs: solidity `address(_target).call{gas: _{g => minG}asLimit(_message);`
  • Loading branch information
cpengilly committed Jun 9, 2024
2 parents 1f92a4c + 2de4bc7 commit eb9ef5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/builders/app-developers/bridging/messaging.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ The `sendMessage` function has three parameters:
This is basically equivalent to:

```solidity
address(_target).call{gas: _gasLimit}(_message);
address(_target).call{gas: _minGasLimit}(_message);
```

Except, of course, that you're calling a contract on a completely different network.
Expand Down

0 comments on commit eb9ef5d

Please sign in to comment.