aboutsummaryrefslogtreecommitdiffstats
path: root/core/consensus.go
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-09-26 11:46:48 +0800
committerGitHub <noreply@github.com>2018-09-26 11:46:48 +0800
commit616e2d8d864d48593c90c2438dce187d42ca875c (patch)
tree54449307979c0a7b7dbe16cd185786c776ddf209 /core/consensus.go
parenta79c10ff1f4717e7e26096f81a57df10b8c9a592 (diff)
downloaddexon-consensus-616e2d8d864d48593c90c2438dce187d42ca875c.tar
dexon-consensus-616e2d8d864d48593c90c2438dce187d42ca875c.tar.gz
dexon-consensus-616e2d8d864d48593c90c2438dce187d42ca875c.tar.bz2
dexon-consensus-616e2d8d864d48593c90c2438dce187d42ca875c.tar.lz
dexon-consensus-616e2d8d864d48593c90c2438dce187d42ca875c.tar.xz
dexon-consensus-616e2d8d864d48593c90c2438dce187d42ca875c.tar.zst
dexon-consensus-616e2d8d864d48593c90c2438dce187d42ca875c.zip
core: configuration chain test (#137)
Diffstat (limited to 'core/consensus.go')
-rw-r--r--core/consensus.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/consensus.go b/core/consensus.go
index f6ce3de..c7eea32 100644
--- a/core/consensus.go
+++ b/core/consensus.go
@@ -411,7 +411,7 @@ func (con *Consensus) runDKGTSIG() {
panic(err)
}
con.network.BroadcastDKGPartialSignature(psig)
- if err = con.cfgModule.runBlockTSig(round, hash); err != nil {
+ if _, err = con.cfgModule.runBlockTSig(round, hash); err != nil {
panic(err)
}
}()