mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-02 13:33:10 +00:00
8 lines
179 B
Nim
8 lines
179 B
Nim
from pkg/libp2p import MultiHash
|
|
|
|
func digestBytes*(mhash: MultiHash): seq[byte] =
|
|
## Extract hash digestBytes
|
|
##
|
|
|
|
mhash.data.buffer[mhash.dpos ..< mhash.dpos + mhash.size]
|