mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-03 02:22:04 +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
|
|
}
|