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`.