Skip to content

Commit 002aea3

Browse files
committed
lint
1 parent b4025b3 commit 002aea3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

encoding/da.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ func GetCodecVersion(config *params.ChainConfig, blockHeight, blockTimestamp uin
664664
} else if !config.IsEuclid(blockTimestamp) {
665665
return CodecV4
666666
} else {
667-
// V5 is skipped, because it is only used for the special Euclid transition batch that we handle explicitly
667+
// V5 is skipped, because it is only used for the special Euclid transition batch that we handle explicitly
668668
return CodecV6
669669
}
670670
}

encoding/interfaces.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func CodecFromVersion(version CodecVersion) (Codec, error) {
105105
// CodecFromConfig determines and returns the appropriate codec based on chain configuration, block number, and timestamp.
106106
func CodecFromConfig(chainCfg *params.ChainConfig, startBlockNumber *big.Int, startBlockTimestamp uint64) Codec {
107107
if chainCfg.IsEuclid(startBlockTimestamp) {
108-
// V5 is skipped, because it is only used for the special Euclid transition batch that we handle explicitly
108+
// V5 is skipped, because it is only used for the special Euclid transition batch that we handle explicitly
109109
return NewDACodecV6()
110110
} else if chainCfg.IsDarwinV2(startBlockTimestamp) {
111111
return &DACodecV4{}

0 commit comments

Comments
 (0)