mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
Fix redundant type converstion (#13076)
* Fix redundant type converstion * Revert generated changes --------- Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
This commit is contained in:
@@ -23,7 +23,7 @@ func (x *SyncCommittee) Equals(other *SyncCommittee) bool {
|
||||
}
|
||||
|
||||
func FloorLog2(x uint64) int {
|
||||
return bits.Len64(uint64(x - 1))
|
||||
return bits.Len64(x - 1)
|
||||
}
|
||||
|
||||
func isEmptyWithLength(bb [][]byte, length uint64) bool {
|
||||
|
||||
Reference in New Issue
Block a user