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

chore: fix some typos #1418

Merged
merged 2 commits into from
May 6, 2024
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/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ func New(

// Create static IBC router, add transfer route, then set and seal it
ibcRouter := porttypes.NewRouter()
// Add ontroller & ica auth modules to IBC router
// Add controller & ica auth modules to IBC router
ibcRouter.
AddRoute(icaauthtypes.ModuleName, icaControllerStack).
AddRoute(icacontrollertypes.SubModuleName, icaControllerStack).
Expand Down
4 changes: 2 additions & 2 deletions integration_tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def test_native_call(cronos):
"""
test contract native call on cronos network
- deploy test contract
- run native call, expect failure, becuase no native fund in contract
- run native call, expect failure, because no native fund in contract
- send native tokens to contract account
- run again, expect success and check balance
"""
Expand Down Expand Up @@ -252,7 +252,7 @@ def test_statesync(cronos):
# check query chain state works
assert not get_sync_info(clustercli.status(i))["catching_up"]

# check query old transaction does't work
# check query old transaction doesn't work
# Get we3 provider
base_port = ports.evmrpc_port(clustercli.base_port(i))
print("json-rpc port:", base_port)
Expand Down
2 changes: 1 addition & 1 deletion nix/build_overlay.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# some basic overlays nessesary for the build
# some basic overlays necessary for the build
final: super: {
rocksdb = final.callPackage ./rocksdb.nix { };
}
Loading