From 279cebdc36598f94ca988e8fcfa80f773dec9ae7 Mon Sep 17 00:00:00 2001 From: Cosmos SDK <113218068+github-prbot@users.noreply.github.com> Date: Sun, 17 Dec 2023 15:05:09 +0100 Subject: [PATCH] chore: fix spelling errors (#18771) Co-authored-by: github-merge-queue --- baseapp/abci.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baseapp/abci.go b/baseapp/abci.go index 0cbe50ffd2..756336c756 100644 --- a/baseapp/abci.go +++ b/baseapp/abci.go @@ -641,7 +641,7 @@ func (app *BaseApp) ExtendVote(_ context.Context, req *abci.RequestExtendVote) ( // logic in verifying a vote extension from another validator during the pre-commit // phase. The response MUST be deterministic. An error is returned if vote // extensions are not enabled or if verifyVoteExt fails or panics. -// We highly recommend a size validation due to performance degredation, +// We highly recommend a size validation due to performance degradation, // see more here https://docs.cometbft.com/v0.38/qa/cometbft-qa-38#vote-extensions-testbed func (app *BaseApp) VerifyVoteExtension(req *abci.RequestVerifyVoteExtension) (resp *abci.ResponseVerifyVoteExtension, err error) { if app.verifyVoteExt == nil {