mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 23:18:15 -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:
@@ -704,7 +704,7 @@ func NewInvalidSignatureSet(t *testing.T, msgBody string, num int, throwErr bool
|
||||
|
||||
func messageBytes(message string) [32]byte {
|
||||
var bytes [32]byte
|
||||
copy(bytes[:], []byte(message))
|
||||
copy(bytes[:], message)
|
||||
return bytes
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user