Skip to content

Commit

Permalink
chore: fix some comments
Browse files Browse the repository at this point in the history
Signed-off-by: haouvw <[email protected]>
  • Loading branch information
haouvw committed Jun 26, 2024
1 parent 1cc2d06 commit e5748d0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/gravity-bridge/dev-setup-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,4 @@ releases](https://github.com/PeggyJV/gravity-bridge/releases).
--ethereum-key="orch_eth"
```

After all the orchestrator processes run, the gravity bridge between ethereum and cronos is setup succesfully.
After all the orchestrator processes run, the gravity bridge between ethereum and cronos is setup successfully.
4 changes: 2 additions & 2 deletions docs/static/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1576,7 +1576,7 @@ paths:
type: object
properties:
commission:
description: commission defines the commision the validator received.
description: commission defines the commission the validator received.
type: object
properties:
commission:
Expand Down Expand Up @@ -17460,7 +17460,7 @@ definitions:
type: object
properties:
commission:
description: commission defines the commision the validator received.
description: commission defines the commission the validator received.
type: object
properties:
commission:
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/cosmoscli.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ def create_validator(
amount=amount,
pubkey=pubkey,
min_self_delegation=min_self_delegation,
# commision
# commission
commission_rate=commission_rate,
commission_max_rate=commission_max_rate,
commission_max_change_rate=commission_max_change_rate,
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 @@ -283,7 +283,7 @@ def test_statesync(cronos):
== initial_balance + tx_value + tx_value
)

print("succesfully syncing")
print("successfully syncing")
clustercli.supervisor.stopProcess(f"{clustercli.chain_id}-node{i}")


Expand Down Expand Up @@ -572,7 +572,7 @@ def test_exception(cluster):
receipt = send_transaction(
w3, contract.functions.transfer(5 * (10**18)).build_transaction()
)
assert receipt.status == 1, "should be succesfully"
assert receipt.status == 1, "should be successfully"
assert 5 * (10**18) == contract.caller.query()


Expand Down
2 changes: 1 addition & 1 deletion integration_tests/test_replay_block.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def test_block_overflow(custom_cronos):
else:
assert False, "timeout"

# the first tx succeds.
# the first tx succeeds.
assert success.status == 1
assert success.gasUsed < gas_limits[success["from"]]
assert success.cumulativeGasUsed == success.gasUsed
Expand Down

0 comments on commit e5748d0

Please sign in to comment.