mirror of
https://github.com/status-im/nim-codex.git
synced 2025-02-09 17:33:38 +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]
|