aboutsummaryrefslogtreecommitdiffstats
path: root/core/consensus_test.go
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-09-26 09:55:08 +0800
committerGitHub <noreply@github.com>2018-09-26 09:55:08 +0800
commita79c10ff1f4717e7e26096f81a57df10b8c9a592 (patch)
tree69081c65669f0a68e7f27a81efffbacfb1983f10 /core/consensus_test.go
parent0ffea9dadcfc0d8a740942a2d666eccc00613cd4 (diff)
downloadtangerine-consensus-a79c10ff1f4717e7e26096f81a57df10b8c9a592.tar.gz
tangerine-consensus-a79c10ff1f4717e7e26096f81a57df10b8c9a592.tar.zst
tangerine-consensus-a79c10ff1f4717e7e26096f81a57df10b8c9a592.zip
core: run TSIG for first configuration block at startup (#135)
Diffstat (limited to 'core/consensus_test.go')
-rw-r--r--core/consensus_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/consensus_test.go b/core/consensus_test.go
index 2b71d6b..a58d3e8 100644
--- a/core/consensus_test.go
+++ b/core/consensus_test.go
@@ -55,6 +55,12 @@ func (n *network) BroadcastDKGPrivateShare(
prvShare *types.DKGPrivateShare) {
}
+// BroadcastDKGPartialSignature broadcasts partialSignature to all
+// DKG participants.
+func (n *network) BroadcastDKGPartialSignature(
+ psig *types.DKGPartialSignature) {
+}
+
// ReceiveChan returns a channel to receive messages from DEXON network.
func (n *network) ReceiveChan() <-chan interface{} {
return make(chan interface{})