Skip to content

Commit d5801a8

Browse files
Fix typos in some files
1 parent 6860dc0 commit d5801a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ccip/config/evm/Hedera_Mainnet.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ BumpPercent = 20
2222
[Transactions]
2323
# To hit throttling you'd need to maintain 15 m gas /sec over a prolonged period of time.
2424
# Because Hedera's block times are every 2 secs it's less less likely to happen as compared to other chains
25-
# Setting this to little higher even though Hedera has High TPS, We have seen 10-12s to get the trasaction mined & 20-25s incase of failures
25+
# Setting this to little higher even though Hedera has High TPS, We have seen 10-12s to get the transaction mined & 20-25s in case of failures
2626
# Accounting for Node syncs & avoid re-sending txns before fetching the receipt, setting to 2m
2727
ResendAfterThreshold = '2m'
2828

core/capabilities/ccip/common/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type ExtraDataDecoded struct {
2020

2121
// HashedCapabilityID returns the hashed capability id in a manner equivalent to the capability registry.
2222
func HashedCapabilityID(capabilityLabelledName, capabilityVersion string) (r [32]byte, err error) {
23-
// TODO: investigate how to avoid parsing the ABI everytime.
23+
// TODO: investigate how to avoid parsing the ABI every time.
2424
tabi := `[{"type": "string"}, {"type": "string"}]`
2525
abiEncoded, err := utils.ABIEncode(tabi, capabilityLabelledName, capabilityVersion)
2626
if err != nil {

0 commit comments

Comments
 (0)