Minor fix

This commit is contained in:
Shivam Sharma 2022-02-16 23:55:31 +05:30 committed by Victor Castell
parent b172ba8fbf
commit c3d180cc46

View file

@ -91,7 +91,7 @@ func (api *API) GetSnapshotProposerSequence(number *rpc.BlockNumber) (BlockSigne
difficulties[signers[i]] = uint64(len(signers) - (tempIndex - proposerIndex)) difficulties[signers[i]] = uint64(len(signers) - (tempIndex - proposerIndex))
} }
difficulties2 := rankMapDifficulties(difficulties) rankedDifficulties := rankMapDifficulties(difficulties)
author, err := api.GetAuthor(number) author, err := api.GetAuthor(number)
if err != nil { if err != nil {
@ -99,7 +99,7 @@ func (api *API) GetSnapshotProposerSequence(number *rpc.BlockNumber) (BlockSigne
} }
diff := int(difficulties[*author]) diff := int(difficulties[*author])
blockSigners := &BlockSigners{ blockSigners := &BlockSigners{
Signers: difficulties2, Signers: rankedDifficulties,
Diff: diff, Diff: diff,
Author: *author, Author: *author,
} }