Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

chore: fix some comments #1597

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 e2e/testapp/docker/local/config/app.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ halt-time = 0
# It has no bearing on application state pruning which is determined by the
# "pruning-*" configurations.
#
# Note: CometBFT block pruning is dependant on this parameter in conjunction
# Note: CometBFT block pruning is dependent on this parameter in conjunction
# with the unbonding (safety threshold) period, state pruning and state sync
# snapshot parameters to determine the correct minimum value of
# ResponseCommit.RetainHeight.
Expand Down
4 changes: 2 additions & 2 deletions eth/core/state/mock/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func NewEmptyStatePlugin() *PluginMock {
},
SetCodeFunc: func(address common.Address, bytes []byte) {
if _, ok := Accounts[address]; !ok {
panic("acct doesnt exist")
panic("acct doesn't exist")
}
Accounts[address] = &Account{
Balance: Accounts[address].Balance,
Expand All @@ -140,7 +140,7 @@ func NewEmptyStatePlugin() *PluginMock {
},
SubBalanceFunc: func(address common.Address, intMoqParam *big.Int) {
if _, ok := Accounts[address]; !ok {
panic("acct doesnt exist")
panic("acct doesn't exist")
}
Accounts[address] = &Account{
Balance: Accounts[address].Balance.Sub(Accounts[address].Balance, intMoqParam),
Expand Down
Loading