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

Corrected spelling and grammar mistakes #2445

Open
wants to merge 2 commits 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
4 changes: 2 additions & 2 deletions STATE-COMPATIBILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func someInternalMethod(ctx sdk.Context) {
- It will run out of gas with `gasUsed = 2100` where 2100 is getting merkelized
into the tx results.

Therefore, we introduced a state-incompatibility by merklezing diverging gas
Therefore, we introduced a state-incompatibility by merkelizing diverging gas
usage.

## Secondary Limitations To Keep In Mind
Expand Down Expand Up @@ -209,4 +209,4 @@ to predict when the multi-threaded state can be updated.

### Hardware Errors

This is out of the developer's control but is mentioned for completeness.
This is out of the developer's control but is mentioned for completeness.
2 changes: 1 addition & 1 deletion testutil/simibc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A collection of utilities based on [ibc-go/testing](https://github.com/cosmos/ib

It is very hard to reason about tests written using vanilla [ibc-go/testing](https://github.com/cosmos/ibc-go/tree/main/testing) because the methods included in that library have many side effects. For example, that library has a notion of global time, so calling EndBlock on one chain will influence the future block times of another chain. As another example, sending a packet from chain A to B will automatically progress the block height on chain A. These behaviors make it very hard to understand, especially if your applications have business logic in BeginBlock or EndBlock.

The utilities in simibc do not have any side effects, making it very easy to understand what is happening. It also makes it very easy to write data driven tests (like table tests, model based tests or property based tests).
The utilities in simibc do not have any side effects, making it very easy to understand what is happening. It also makes it very easy to write data-driven tests (like table tests, model-based tests or property-based tests).

## How do I use this?

Expand Down
Loading