mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-13 19:03:10 +00:00
8 lines
176 B
Nim
8 lines
176 B
Nim
import pkg/libp2p/multihash
|
|
|
|
template bytes*(mh: MultiHash): seq[byte] =
|
|
## get the hash bytes of a multihash object
|
|
##
|
|
|
|
mh.data.buffer[mh.dpos..(mh.dpos + mh.size - 1)]
|