From bf79497e97a8e4f2182c8d5c6c92454de4d1c372 Mon Sep 17 00:00:00 2001 From: Yiannis Marangos Date: Wed, 4 Dec 2024 14:27:23 +0200 Subject: [PATCH] Update proto/vendor/README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: MikoĊ‚aj Florkiewicz Signed-off-by: Yiannis Marangos --- proto/vendor/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/vendor/README.md b/proto/vendor/README.md index 51d86799..eeb043e9 100644 --- a/proto/vendor/README.md +++ b/proto/vendor/README.md @@ -121,7 +121,7 @@ Keep in mind that if the type exists in the same file, then full path is not nee **Step 5:** -Vendor any message type that contains a modified message type. The best example here is the modified `Data`: +Vendor any message type that contains a modified message type, recursively. The best example here is the modified `Data`: * We need to vendor `tendermint.types.Block` in `tendermint-celestia-mods` because it uses `Data` ([link](https://github.com/eigerco/lumina/blob/82c51f6ac88fd3662a0f91a0cf19a717986e3470/proto/vendor/tendermint-celestia-mods/types/block.proto#L9-L14)). * Then vendor `tendermint.blockchain.BlockResponse` because it uses `tendermint.types.Block` ([link](https://github.com/eigerco/lumina/blob/82c51f6ac88fd3662a0f91a0cf19a717986e3470/proto/vendor/tendermint-celestia-mods/blockchain/types.proto#L9-L11)). Notice that `BlockResponse.block` now has a type of `tendermint_celestia_mods.types.Block`.