diff --git a/cmd/blobstream/query/cmd.go b/cmd/blobstream/query/cmd.go index bf17638c..dcf0a166 100644 --- a/cmd/blobstream/query/cmd.go +++ b/cmd/blobstream/query/cmd.go @@ -257,15 +257,16 @@ func SignersRange() *cobra.Command { }]++ } else { // keep the same number of signatures the same but still have the value in the map - signersMap[validatorInfo{ + val := signersMap[validatorInfo{ EvmAddress: sig.EvmAddress, Moniker: sig.Moniker, ValopAddress: sig.ValopAddress, - }] = signersMap[validatorInfo{ + }] + signersMap[validatorInfo{ EvmAddress: sig.EvmAddress, Moniker: sig.Moniker, ValopAddress: sig.ValopAddress, - }] + }] = val } } }