1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-05-13 15:21:20 +00:00

8 lines
136 B
Go
Raw Normal View History

2014-10-30 03:32:09 -07:00
package common
func Fingerprint(bytez []byte) []byte {
fingerprint := make([]byte, 6)
copy(fingerprint, bytez)
return fingerprint
}