diff options
Diffstat (limited to 'core/vm')
-rw-r--r-- | core/vm/oracle_contracts.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/oracle_contracts.go b/core/vm/oracle_contracts.go index 0431f3823..759727aa3 100644 --- a/core/vm/oracle_contracts.go +++ b/core/vm/oracle_contracts.go @@ -1366,7 +1366,7 @@ func (g *GovernanceContract) fineFailStopDKG(threshold int) { } } for id, complaints := range complaintsByID { - if len(complaints) > threshold { + if len(complaints) >= threshold { offset := g.state.NodesOffsetByNodeKeyAddress(IdToAddress(id)) // Node might have been unstaked. if offset.Cmp(big.NewInt(0)) < 0 { |