Skip to content

Commit

Permalink
Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
enoldev committed Oct 27, 2023
1 parent 28f6c36 commit ee7a44b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* [Mapping Blocks](tutorials/exploring-ethereum/map_block_meta_module.md)
* [Filtering Transactions](tutorials/exploring-ethereum/map_filter_transactions_module.md)
* [Retrieving Events of a Smart Contract](tutorials/exploring-ethereum/map_contract_events_module.md)
* [Making eth_calls](tutorials/tutorials/eth-calls.md)
* [Making eth_calls](tutorials/eth-calls.md)
* [Rust](tutorials/rust/overview.md)
* [The Option struct](tutorials/rust/option.md)
* [The Result struct](tutorials/rust/result.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/eth-calls.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ fn map_events(blk: eth::Block) -> Result<contract::Events, substreams::errors::E
```
{% hint style="warning" %}
**Important:** Remember that this tutorial shows how to call the `decimals` function, but all the available are under the `abi::contract::functions` namespace, so you should be able to find them just by exploring the auto-generated ABI Rust files.
**Important:** Remember that this tutorial shows how to call the `decimals` function, but all the available calls are under the `abi::contract::functions` namespace, so you should be able to find them just by exploring the auto-generated ABI Rust files.
{% endhint %}
6. To see it in action, just re-build and re-run the Substreams:
Expand Down

0 comments on commit ee7a44b

Please sign in to comment.