Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix typo #4309

Merged
merged 2 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/process_proposal.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func (app *App) ProcessProposal(req abci.RequestProcessProposal) (resp abci.Resp
}
}()

// Create the anteHander that is used to check the validity of
// Create the anteHandler that is used to check the validity of
// transactions. All transactions need to be equally validated here
// so that the nonce number is always correctly incremented (which
// may affect the validity of future transactions).
Expand Down
4 changes: 2 additions & 2 deletions x/mint/test/mint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ func (s *IntegrationTestSuite) TestTotalSupplyIncreasesOverTime() {
err := s.cctx.WaitForNextBlock()
require.NoError(err)

initalSupply := s.getTotalSupply(initialHeight)
initialSupply := s.getTotalSupply(initialHeight)

_, err = s.cctx.WaitForHeight(laterHeight + 1)
require.NoError(err)
laterSupply := s.getTotalSupply(laterHeight)

require.True(initalSupply.AmountOf(app.BondDenom).LT(laterSupply.AmountOf(app.BondDenom)))
require.True(initialSupply.AmountOf(app.BondDenom).LT(laterSupply.AmountOf(app.BondDenom)))
}

// TestInflationRate verifies that the inflation rate each year matches the
Expand Down
Loading