mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-05 19:42:13 +00:00
8 lines
136 B
Go
8 lines
136 B
Go
package common
|
|
|
|
func Fingerprint(bytez []byte) []byte {
|
|
fingerprint := make([]byte, 6)
|
|
copy(fingerprint, bytez)
|
|
return fingerprint
|
|
}
|