Skip to content

Commit 64133ef

Browse files
committed
fixes after merge
1 parent 7a60b34 commit 64133ef

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

encoding/interfaces.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ func CodecFromVersion(version CodecVersion) (Codec, error) {
118118
func CodecFromConfig(chainCfg *params.ChainConfig, startBlockNumber *big.Int, startBlockTimestamp uint64) Codec {
119119
// TODO: replace with correct fork
120120
if chainCfg.IsEuclid(startBlockTimestamp) {
121+
return &DACodecV7{}
122+
} else if chainCfg.IsEuclid(startBlockTimestamp) {
121123
// V5 is skipped, because it is only used for the special Euclid transition batch that we handle explicitly
122124
return NewDACodecV6()
123125
} else if chainCfg.IsDarwinV2(startBlockTimestamp) {

0 commit comments

Comments
 (0)