add hash proc to support using with containers (#516)

This commit is contained in:
Dmitriy Ryajov 2021-02-05 10:12:44 -06:00 committed by GitHub
parent 5aebf0990e
commit 5c234ddd37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -11,7 +11,7 @@
{.push raises: [Defect].}
import tables
import tables, hashes
import multibase, multicodec, multihash, vbuffer, varint
import stew/[base58, results]
@ -268,6 +268,9 @@ proc encode*(mbtype: typedesc[MultiBase], encoding: string,
## ``encoding``.
result = MultiBase.encode(encoding, cid.data.buffer).tryGet()
proc hash*(cid: Cid): Hash {.inline.} =
hash(cid.data.buffer)
proc `$`*(cid: Cid): string =
## Return official string representation of content identifier ``cid``.
if cid.cidver == CIDv0: