mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-07 23:48:36 +00:00
consensus/clique: remove redundant pair of parentheses (#21104)
This commit is contained in:
parent
4f2784b38f
commit
25a661e0c2
1 changed files with 1 additions and 1 deletions
|
|
@ -170,7 +170,7 @@ func (api *API) Status() (*status, error) {
|
||||||
signStatus[sealer]++
|
signStatus[sealer]++
|
||||||
}
|
}
|
||||||
return &status{
|
return &status{
|
||||||
InturnPercent: float64((100 * optimals)) / float64(numBlocks),
|
InturnPercent: float64(100*optimals) / float64(numBlocks),
|
||||||
SigningStatus: signStatus,
|
SigningStatus: signStatus,
|
||||||
NumBlocks: numBlocks,
|
NumBlocks: numBlocks,
|
||||||
}, nil
|
}, nil
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue