From a53bd0067a65292a1869e19d3c0cfe1d786a5a14 Mon Sep 17 00:00:00 2001 From: crStiv Date: Fri, 28 Mar 2025 16:03:22 +0100 Subject: [PATCH] Update methods.md --- spec/app/ics-028-cross-chain-validation/methods.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spec/app/ics-028-cross-chain-validation/methods.md b/spec/app/ics-028-cross-chain-validation/methods.md index 8e0466d58..9c840482c 100644 --- a/spec/app/ics-028-cross-chain-validation/methods.md +++ b/spec/app/ics-028-cross-chain-validation/methods.md @@ -447,8 +447,10 @@ function CreateConsumerClient(p: ConsumerAdditionProposal) { // the validator set is the same as the validator set // from own consensus state at current height // - // TODO: ownConsensusState.validatorSet VS consensusState.nextValidatorsHash - // specify which validator set is used as the initial val set + // Using ownConsensusState.validatorSet as the initial validator set is preferred + // over consensusState.nextValidatorsHash because it provides the full validator set + // information directly rather than just a hash, ensuring complete validator data + // is available for the consumer chain initialization. ownConsensusState = getConsensusState(getCurrentHeight()) initialValSet = ownConsensusState.validatorSet