go.mod: usegopkg.in/yaml.v3 instead of github.com/go-yaml/yaml (#27295)

This commit is contained in:
Shude Li
2023-05-17 23:35:30 +02:00
committed by GitHub
parent c08dc59aad
commit 6a6318b1d2
3 changed files with 3 additions and 6 deletions
+2 -2
View File
@@ -27,7 +27,7 @@ import (
"github.com/ethereum/go-ethereum/beacon/merkle"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/go-yaml/yaml"
"gopkg.in/yaml.v3"
)
// syncCommitteeDomain specifies the signatures specific use to avoid clashes
@@ -121,7 +121,7 @@ func (c *ChainConfig) AddFork(name string, epoch uint64, version []byte) *ChainC
c.Forks = append(c.Forks, fork)
sort.Sort(c.Forks)
return c
}