aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/nodeset.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/types/nodeset.go')
-rw-r--r--core/types/nodeset.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/core/types/nodeset.go b/core/types/nodeset.go
index fccfbb6..8060007 100644
--- a/core/types/nodeset.go
+++ b/core/types/nodeset.go
@@ -40,7 +40,6 @@ type subSetTargetType byte
const (
targetNotarySet subSetTargetType = iota
- targetDKGSet
targetNodeLeader
)
@@ -89,11 +88,6 @@ func NewNotarySetTarget(crs common.Hash) *SubSetTarget {
return newTarget(targetNotarySet, crs[:])
}
-// NewDKGSetTarget is the target for getting DKG Set.
-func NewDKGSetTarget(crs common.Hash) *SubSetTarget {
- return newTarget(targetDKGSet, crs[:])
-}
-
// NewNodeLeaderTarget is the target for getting leader of fast BA.
func NewNodeLeaderTarget(crs common.Hash, height uint64) *SubSetTarget {
binaryHeight := make([]byte, 8)