aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-10-22 15:13:25 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:50 +0800
commitdefdcafc514226b73050467ac42c787ef3f7cfea (patch)
treee73fee8888f1d1bb8056e8d161298504d17f07e3 /core
parentbbc777cf41dffea2fc63e0946e5ce3a7ddce1be7 (diff)
downloaddexon-defdcafc514226b73050467ac42c787ef3f7cfea.tar
dexon-defdcafc514226b73050467ac42c787ef3f7cfea.tar.gz
dexon-defdcafc514226b73050467ac42c787ef3f7cfea.tar.bz2
dexon-defdcafc514226b73050467ac42c787ef3f7cfea.tar.lz
dexon-defdcafc514226b73050467ac42c787ef3f7cfea.tar.xz
dexon-defdcafc514226b73050467ac42c787ef3f7cfea.tar.zst
dexon-defdcafc514226b73050467ac42c787ef3f7cfea.zip
dex: misc fixes
Diffstat (limited to 'core')
-rw-r--r--core/vm/governance.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/vm/governance.go b/core/vm/governance.go
index b5d703fd7..5e6cc0b4d 100644
--- a/core/vm/governance.go
+++ b/core/vm/governance.go
@@ -877,7 +877,7 @@ const (
crsLoc
dkgMasterPublicKeysLoc
dkgComplaintsLoc
- dkgFinailizedLoc
+ dkgFinalizedLoc
dkgFinalizedsCountLoc
ownerLoc
blockRewardLoc
@@ -1174,12 +1174,12 @@ func (s *GovernanceStateHelper) PushDKGComplaint(round *big.Int, complaint []byt
// mapping(address => bool)[] public dkgFinalized;
func (s *GovernanceStateHelper) DKGFinalized(round *big.Int, addr common.Address) bool {
- baseLoc := new(big.Int).Add(s.getSlotLoc(big.NewInt(dkgFinailizedLoc)), round)
+ baseLoc := new(big.Int).Add(s.getSlotLoc(big.NewInt(dkgFinalizedLoc)), round)
mapLoc := s.getMapLoc(baseLoc, addr.Bytes())
return s.getStateBigInt(mapLoc).Cmp(big.NewInt(0)) != 0
}
func (s *GovernanceStateHelper) PutDKGFinalized(round *big.Int, addr common.Address, finalized bool) {
- baseLoc := new(big.Int).Add(s.getSlotLoc(big.NewInt(dkgFinailizedLoc)), round)
+ baseLoc := new(big.Int).Add(s.getSlotLoc(big.NewInt(dkgFinalizedLoc)), round)
mapLoc := s.getMapLoc(baseLoc, addr.Bytes())
res := big.NewInt(0)
if finalized {