mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-03 18:42: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
|
||
|
}
|