mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-03 02:22:14 +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
|
|
}
|