Clarify counter logic

This commit is contained in:
Christopher Goes 2018-05-29 02:48:29 +02:00
parent 7fbecc6b72
commit 65945c069c
No known key found for this signature in database
GPG Key ID: E828D98232D328D3
1 changed files with 5 additions and 1 deletions

View File

@ -63,10 +63,14 @@ func (k Keeper) handleValidatorSignature(ctx sdk.Context, pubkey crypto.PubKey,
// Update signed block bit array & counter
previous := k.getValidatorSigningBitArray(ctx, address, index)
if previous && !signed {
if previous == signed {
// No need to update counter
} else if previous && !signed {
// Signed => unsigned, decrement counter
k.setValidatorSigningBitArray(ctx, address, index, false)
signInfo.SignedBlocksCounter--
} else if !previous && signed {
// Unsigned => signed, increment counter
k.setValidatorSigningBitArray(ctx, address, index, true)
signInfo.SignedBlocksCounter++
}