diff --git a/app/module/utils.go b/app/module/utils.go index 6884a86d91..6fbfe42b55 100644 --- a/app/module/utils.go +++ b/app/module/utils.go @@ -9,7 +9,7 @@ import ( ) // defaultMigrationsOrder returns a default migrations order. The order is -// ascending alphabetical by module name except "auth" will will be last. See: +// ascending alphabetical by module name except "auth" will be last. See: // https://github.com/cosmos/cosmos-sdk/issues/10591 func defaultMigrationsOrder(modules []string) []string { result := filter(modules, isNotAuth) diff --git a/app/test/process_proposal_test.go b/app/test/process_proposal_test.go index 093116a85b..e79baeed1d 100644 --- a/app/test/process_proposal_test.go +++ b/app/test/process_proposal_test.go @@ -171,7 +171,7 @@ func TestProcessProposal(t *testing.T) { // Replace the data with new contents d.Txs = [][]byte{blobTx} - // Erasure code the data to update the data root so this doesn't doesn't fail on an incorrect data root. + // Erasure code the data to update the data root so this doesn't fail on an incorrect data root. d.Hash = calculateNewDataHash(t, d.Txs) }, appVersion: appconsts.LatestVersion, diff --git a/docs/architecture/adr-006-non-interactive-defaults.md b/docs/architecture/adr-006-non-interactive-defaults.md index 0c8a8f4eb4..1aa8d2a262 100644 --- a/docs/architecture/adr-006-non-interactive-defaults.md +++ b/docs/architecture/adr-006-non-interactive-defaults.md @@ -295,7 +295,7 @@ type parsedTx struct { // the original raw bytes of the tx rawTx []byte // tx is the parsed sdk tx. this is nil for all txs that do not contain a - // MsgWirePayForBlob, as we do not need to parse other types of of transactions + // MsgWirePayForBlob, as we do not need to parse other types of transactions tx signing.Tx // msg is the wire msg if it exists in the tx. This field is nil for all txs // that do not contain one. diff --git a/specs/src/consensus.md b/specs/src/consensus.md index fa708ce95d..64c68d8b49 100644 --- a/specs/src/consensus.md +++ b/specs/src/consensus.md @@ -227,7 +227,7 @@ function compute_new_entry(reward, power) return reward // power ``` -After applying a transaction, the new state state root is computed. +After applying a transaction, the new state root is computed. #### SignedTransactionDataTransfer