diff options
Diffstat (limited to 'core/configuration-chain.go')
-rw-r--r-- | core/configuration-chain.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/configuration-chain.go b/core/configuration-chain.go index 2b3a859..3a43042 100644 --- a/core/configuration-chain.go +++ b/core/configuration-chain.go @@ -261,7 +261,8 @@ func (cc *configurationChain) recoverDKGInfo(round uint64) error { return ErrDKGNotReady } - threshold := getDKGThreshold(cc.gov.Configuration(round)) + threshold := getDKGThreshold( + utils.GetConfigWithPanic(cc.gov, round, cc.logger)) // Restore group public key. gpk, err := NewDKGGroupPublicKey(round, cc.gov.DKGMasterPublicKeys(round), |