From c5f3b48a8b96ebcdb91e7328aeb8461f32c22da0 Mon Sep 17 00:00:00 2001 From: Giuliano Francescangeli Date: Wed, 3 Apr 2024 13:59:09 -0400 Subject: [PATCH 1/2] Added a note to not run make Protogen if no changes were make to any .proto files --- .../tutorials/evm/exploring-ethereum/map_block_meta_module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/new/tutorials/evm/exploring-ethereum/map_block_meta_module.md b/docs/new/tutorials/evm/exploring-ethereum/map_block_meta_module.md index ab6e8133b..bfa6d5dd4 100644 --- a/docs/new/tutorials/evm/exploring-ethereum/map_block_meta_module.md +++ b/docs/new/tutorials/evm/exploring-ethereum/map_block_meta_module.md @@ -8,7 +8,7 @@ Let's run the Substreams first, and then go through the code. Running a Substreams usually requires three steps: generating the Rust Protobufs, building the WASM container, and using the Substream CLI to start the streaming. Make sure to run the following commands in the `substreams-explorer/ethereum-explorer` folder: -1. **Generate the Protobuf objects:** The `.proto` files define a data model regardless of any programming language. However, in order to use this model in your Rust application, you must generate the corresponding Rust data structures. +1. **Generate the Protobuf objects:** The `.proto` files define a data model regardless of any programming language. However, in order to use this model in your Rust application, you must generate the corresponding Rust data structures. Note that running make protogen is only necessary when making updates to any file in the proto folder. ```bash make protogen From 45096596e43df647ed32c47265d00ae3bacd945b Mon Sep 17 00:00:00 2001 From: Giuliano Francescangeli Date: Wed, 3 Apr 2024 14:06:26 -0400 Subject: [PATCH 2/2] Added a note to not run make Protogen if no changes were make to any .proto files --- .../tutorials/evm/exploring-ethereum/map_block_meta_module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/new/tutorials/evm/exploring-ethereum/map_block_meta_module.md b/docs/new/tutorials/evm/exploring-ethereum/map_block_meta_module.md index bfa6d5dd4..f70a344fe 100644 --- a/docs/new/tutorials/evm/exploring-ethereum/map_block_meta_module.md +++ b/docs/new/tutorials/evm/exploring-ethereum/map_block_meta_module.md @@ -8,7 +8,7 @@ Let's run the Substreams first, and then go through the code. Running a Substreams usually requires three steps: generating the Rust Protobufs, building the WASM container, and using the Substream CLI to start the streaming. Make sure to run the following commands in the `substreams-explorer/ethereum-explorer` folder: -1. **Generate the Protobuf objects:** The `.proto` files define a data model regardless of any programming language. However, in order to use this model in your Rust application, you must generate the corresponding Rust data structures. Note that running make protogen is only necessary when making updates to any file in the proto folder. +1. **Generate the Protobuf objects:** The `.proto` files define a data model regardless of any programming language. However, in order to use this model in your Rust application, you must generate the corresponding Rust data structures. Note that running `make protogen` is only necessary when making updates to any file in the proto folder. ```bash make protogen