diff --git a/docs/architecture/adr-007.md b/docs/architecture/adr-007.md index a2ca67025b..9747c77612 100644 --- a/docs/architecture/adr-007.md +++ b/docs/architecture/adr-007.md @@ -37,7 +37,7 @@ event __CronosSendToIbc(address indexed sender, uint256 indexed channelId, strin #### Description -- Event `__CronosSendToIbc` has differnt signature in CRC20 and CR21. +- Event `__CronosSendToIbc` has different signature in CRC20 and CR21. - The chain logic will distinguish between the two formats and behave accordingly. - Channel ID argument is added to support sending to specified IBC channel. - For token originated from Cronos, this channel ID could be any available IBC channel. diff --git a/docs/gravity-bridge/dev-setup-guide.md b/docs/gravity-bridge/dev-setup-guide.md index 95270f048c..5242cb4284 100644 --- a/docs/gravity-bridge/dev-setup-guide.md +++ b/docs/gravity-bridge/dev-setup-guide.md @@ -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. diff --git a/integration_tests/test_basic.py b/integration_tests/test_basic.py index 52d4d5593c..258e555bbc 100644 --- a/integration_tests/test_basic.py +++ b/integration_tests/test_basic.py @@ -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}") @@ -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() diff --git a/integration_tests/test_replay_block.py b/integration_tests/test_replay_block.py index 89791f94ac..a7a65eccc7 100644 --- a/integration_tests/test_replay_block.py +++ b/integration_tests/test_replay_block.py @@ -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 diff --git a/memiavl/README.md b/memiavl/README.md index dd155722b6..3fcf03358a 100644 --- a/memiavl/README.md +++ b/memiavl/README.md @@ -118,7 +118,7 @@ IAVL snapshot is composed by four files: #### Compression -The items in snapshot reference with each other by file offsets, we can apply some block compression techniques to compress keys and values files while maintain random accessbility by uncompressed file offset, for example zstd's experimental seekable format[^1]. +The items in snapshot reference with each other by file offsets, we can apply some block compression techniques to compress keys and values files while maintain random accessibility by uncompressed file offset, for example zstd's experimental seekable format[^1]. ### VersionDB diff --git a/memiavl/multitree.go b/memiavl/multitree.go index f46388698e..866123b597 100644 --- a/memiavl/multitree.go +++ b/memiavl/multitree.go @@ -279,7 +279,7 @@ func (t *MultiTree) SaveVersion(updateCommitInfo bool) (int64, error) { if updateCommitInfo { t.UpdateCommitInfo() } else { - // clear the dirty informaton + // clear the dirty information t.lastCommitInfo.StoreInfos = []StoreInfo{} }