Browse Source

remove needless nil variable

pull/7983/head
William Banfield 3 years ago
parent
commit
1fb789e7b7
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      internal/state/helpers_test.go

+ 2
- 4
internal/state/helpers_test.go View File

@ -155,9 +155,7 @@ func makeHeaderPartsResponsesValPubKeyChange(
block, err := sf.MakeBlock(state, state.LastBlockHeight+1, new(types.Commit))
require.NoError(t, err)
abciResponses := &tmstate.ABCIResponses{
FinalizeBlock: &abci.ResponseFinalizeBlock{ValidatorUpdates: nil},
}
abciResponses := &tmstate.ABCIResponses{}
// If the pubkey is new, remove the old and add the new.
_, val := state.NextValidators.GetByIndex(0)
if !bytes.Equal(pubkey.Bytes(), val.PubKey.Bytes()) {
@ -188,7 +186,7 @@ func makeHeaderPartsResponsesValPowerChange(
require.NoError(t, err)
abciResponses := &tmstate.ABCIResponses{
FinalizeBlock: &abci.ResponseFinalizeBlock{ValidatorUpdates: nil},
FinalizeBlock: &abci.ResponseFinalizeBlock{},
}
// If the pubkey is new, remove the old and add the new.


Loading…
Cancel
Save