From 3c4a91efd060f7102b22376ac46f30a52b697b29 Mon Sep 17 00:00:00 2001 From: Cosmos SDK <113218068+github-prbot@users.noreply.github.com> Date: Wed, 24 Jan 2024 14:10:08 +0100 Subject: [PATCH] chore: fix spelling errors (#19220) Co-authored-by: github-merge-queue Co-authored-by: Julien Robert --- client/v2/offchain/cli.go | 2 +- docs/build/abci/00-introduction.md | 2 +- types/context.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/v2/offchain/cli.go b/client/v2/offchain/cli.go index 1ff6011429..fabb3f503b 100644 --- a/client/v2/offchain/cli.go +++ b/client/v2/offchain/cli.go @@ -111,6 +111,6 @@ func VerifyFile() *cobra.Command { }, } - cmd.Flags().String(flagFileFormat, "json", "Choose whats the file format to be verified (json|text)") + cmd.Flags().String(flagFileFormat, "json", "Choose what's the file format to be verified (json|text)") return cmd } diff --git a/docs/build/abci/00-introduction.md b/docs/build/abci/00-introduction.md index 5eef47e1c2..f0ff1d9938 100644 --- a/docs/build/abci/00-introduction.md +++ b/docs/build/abci/00-introduction.md @@ -2,7 +2,7 @@ ## What is ABCI? -ABC, Application Blockchain Interface is the interface between CometBFT and the application, more information about ABCI can be found [here](https://docs.cometbft.com/v0.38/spec/abci/). Within the release of ABCI 2.0 for the 0.38 CometBFT release there were additional methods introduced. +ABCI, Application Blockchain Interface is the interface between CometBFT and the application, more information about ABCI can be found [here](https://docs.cometbft.com/v0.38/spec/abci/). Within the release of ABCI 2.0 for the 0.38 CometBFT release there were additional methods introduced. The 5 methods introduced during ABCI 2.0 are: diff --git a/types/context.go b/types/context.go index 8a805ab846..1eb9d41e40 100644 --- a/types/context.go +++ b/types/context.go @@ -50,7 +50,7 @@ type Context struct { gasMeter storetypes.GasMeter blockGasMeter storetypes.GasMeter checkTx bool // Deprecated: use execMode instead, will be removed after 0.51 - recheckTx bool // if recheckTx == true, then checkTx must also be true // Depreacted: use execMode instead, will be removed after 0.51 + recheckTx bool // if recheckTx == true, then checkTx must also be true // Deprecated: use execMode instead, will be removed after 0.51 sigverifyTx bool // when run simulation, because the private key corresponding to the account in the genesis.json randomly generated, we must skip the sigverify. execMode ExecMode minGasPrice DecCoins