From 8329a27e6aa72a4678576e83b2450795141f20f0 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt <57488781+p-offtermatt@users.noreply.github.com> Date: Fri, 10 May 2024 09:53:32 +0200 Subject: [PATCH] chore: Fix codespell config (#1869) * Add optin and opt-in to codespell ignored words * Fix typo on multiple * Fix typo on assignment --- .github/.codespellignore | 2 ++ tests/e2e/steps_partial_set_security.go | 2 +- tests/integration/distribution.go | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/.codespellignore b/.github/.codespellignore index 3fc9037efb..0c7e0a95c1 100644 --- a/.github/.codespellignore +++ b/.github/.codespellignore @@ -1,3 +1,5 @@ clienta connectiona sover +optin +opt-in diff --git a/tests/e2e/steps_partial_set_security.go b/tests/e2e/steps_partial_set_security.go index 4c63e479df..eb551d80ed 100644 --- a/tests/e2e/steps_partial_set_security.go +++ b/tests/e2e/steps_partial_set_security.go @@ -55,7 +55,7 @@ func stepsOptInChain() []Step { }, // Οpt in "alice" and "bob" so the chain is not empty when it is about to start. Note, that "alice" and "bob" use // the provider's public key (see `UseConsumerKey` is set to `false` in `getDefaultValidators`) and hence do not - // need a consumer-key assigment. + // need a consumer-key assignment. { Action: OptInAction{ Chain: ChainID("consu"), diff --git a/tests/integration/distribution.go b/tests/integration/distribution.go index 5d62b2ee35..a71edf7f77 100644 --- a/tests/integration/distribution.go +++ b/tests/integration/distribution.go @@ -1117,7 +1117,7 @@ func (s *CCVTestSuite) TestMultiConsumerRewardsDistribution() { bundle.GetCtx(), accountKeeper.GetModuleAccount(bundle.GetCtx(), consumertypes.ConsumerToSendToProviderName).GetAddress(), ) - s.Require().Len(pool, 1, "consumer reward pool cannot have mutiple token denoms") + s.Require().Len(pool, 1, "consumer reward pool cannot have multiple token denoms") rewardsPerConsumer = pool[0] }