beacon/engine: using slices.Contains (#29396)

pull/29451/head
cui 6 months ago committed by GitHub
parent 1f8f1377e6
commit 6b39e9236c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      beacon/engine/types.go

@ -19,6 +19,7 @@ package engine
import (
"fmt"
"math/big"
"slices"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
@ -132,12 +133,7 @@ func (b PayloadID) Version() PayloadVersion {
// Is returns whether the identifier matches any of provided payload versions.
func (b PayloadID) Is(versions ...PayloadVersion) bool {
for _, v := range versions {
if v == b.Version() {
return true
}
}
return false
return slices.Contains(versions, b.Version())
}
func (b PayloadID) String() string {

Loading…
Cancel
Save