aboutsummaryrefslogtreecommitdiffstats
path: root/core/configuration-chain.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-10-22 21:28:25 +0800
committerJimmy Hu <jimmy.hu@dexon.org>2018-10-22 21:28:25 +0800
commit6fbd0cd47fd70cfad707e95bc9fb948e7b44d4cf (patch)
treebd39caf3c59242112295ece748db251300696816 /core/configuration-chain.go
parentd240e0cdec95681cf595609809dea4224dc479df (diff)
downloadtangerine-consensus-6fbd0cd47fd70cfad707e95bc9fb948e7b44d4cf.tar
tangerine-consensus-6fbd0cd47fd70cfad707e95bc9fb948e7b44d4cf.tar.gz
tangerine-consensus-6fbd0cd47fd70cfad707e95bc9fb948e7b44d4cf.tar.bz2
tangerine-consensus-6fbd0cd47fd70cfad707e95bc9fb948e7b44d4cf.tar.lz
tangerine-consensus-6fbd0cd47fd70cfad707e95bc9fb948e7b44d4cf.tar.xz
tangerine-consensus-6fbd0cd47fd70cfad707e95bc9fb948e7b44d4cf.tar.zst
tangerine-consensus-6fbd0cd47fd70cfad707e95bc9fb948e7b44d4cf.zip
core: fix uninitialized variable in configuration chain (#238)
Diffstat (limited to 'core/configuration-chain.go')
-rw-r--r--core/configuration-chain.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/configuration-chain.go b/core/configuration-chain.go
index 8834e0d..2676351 100644
--- a/core/configuration-chain.go
+++ b/core/configuration-chain.go
@@ -68,6 +68,7 @@ func newConfigurationChain(
dkgSigner: make(map[uint64]*dkgShareSecret),
gpk: make(map[uint64]*DKGGroupPublicKey),
tsig: make(map[common.Hash]*tsigProtocol),
+ tsigTouched: make(map[common.Hash]struct{}),
tsigReady: sync.NewCond(&sync.Mutex{}),
pendingPsig: make(map[common.Hash][]*types.DKGPartialSignature),
}