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

Commit

Permalink
chore: fix some comments
Browse files Browse the repository at this point in the history
Signed-off-by: jinjingroad <jinjingroad@sina.com>
  • Loading branch information
jinjingroad committed Jun 5, 2024
1 parent 48c9b7a commit 86311f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 86311f3

Please sign in to comment.