diff --git a/app/ante/tx_size_gas.go b/app/ante/tx_size_gas.go index 356f6f2646..9ddd40aa37 100644 --- a/app/ante/tx_size_gas.go +++ b/app/ante/tx_size_gas.go @@ -35,7 +35,7 @@ func init() { // ConsumeTxSizeGasDecorator will take in parameters and consume gas proportional // to the size of tx before calling next AnteHandler. Note, the gas costs will be -// slightly over estimated due to the fact that any given signing account may need +// slightly overestimated due to the fact that any given signing account may need // to be retrieved from state. // // CONTRACT: If simulate=true, then signatures must either be completely filled diff --git a/app/app.go b/app/app.go index 87aeacb661..9ad10d3282 100644 --- a/app/app.go +++ b/app/app.go @@ -185,7 +185,7 @@ type App struct { // // NOTE: upgradeHeightV2 refers specifically to the height that a node will // upgrade from v1 to v2. It will be deprecated in v3 in place for a dynamically -// signalling scheme +// signaling scheme func New( logger log.Logger, db dbm.DB, @@ -265,7 +265,7 @@ func New( ) app.FeeGrantKeeper = feegrantkeeper.NewKeeper(appCodec, keys[feegrant.StoreKey], app.AccountKeeper) - // The upgrade keeper is intialised solely for the ibc keeper which depends on it to know what the next validator hash is for after the + // The upgrade keeper is initialised solely for the ibc keeper which depends on it to know what the next validator hash is for after the // upgrade. This keeper is not used for the actual upgrades but merely for compatibility reasons. Ideally IBC has their own upgrade module // for performing IBC based upgrades. Note, as we use rolling upgrades, IBC technically never needs this functionality. app.UpgradeKeeper = upgradekeeper.NewKeeper(nil, keys[upgradetypes.StoreKey], appCodec, "", app.BaseApp, authtypes.NewModuleAddress(govtypes.ModuleName).String()) @@ -479,7 +479,7 @@ func (app *App) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.Respo panic(err) } } - // from v2 to v3 and onwards we use a signalling mechanism + // from v2 to v3 and onwards we use a signaling mechanism } else if shouldUpgrade, newVersion := app.SignalKeeper.ShouldUpgrade(ctx); shouldUpgrade { // Version changes must be increasing. Downgrades are not permitted if newVersion > currentVersion { diff --git a/app/app_test.go b/app/app_test.go index eee1271ad4..9c1fe24110 100644 --- a/app/app_test.go +++ b/app/app_test.go @@ -46,7 +46,7 @@ func TestNew(t *testing.T) { }) t.Run("should have set StakingKeeper hooks", func(t *testing.T) { // StakingKeeper doesn't expose a GetHooks method so this checks if - // hooks have been set by verifying the a subsequent call to SetHooks + // hooks have been set by verifying the subsequent call to SetHooks // will panic. assert.Panics(t, func() { got.StakingKeeper.SetHooks(nil) }) }) diff --git a/docker/Dockerfile b/docker/Dockerfile index 0e3c4bf51d..d2e9e52a2c 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -8,7 +8,7 @@ ARG BUILDER_IMAGE=docker.io/golang:1.23.1-alpine3.20 ARG RUNTIME_IMAGE=docker.io/alpine:3.19 ARG TARGETOS ARG TARGETARCH -# Use build args to override the maxuimum square size of the docker image i.e. +# Use build args to override the maximum square size of the docker image i.e. # docker build --build-arg MAX_SQUARE_SIZE=64 -t celestia-app:latest . ARG MAX_SQUARE_SIZE # Use build args to override the upgrade height delay of the docker image i.e.