refactor: switch to decodeCid

This commit is contained in:
Derrick Hammer 2023-09-02 23:03:50 -04:00
parent 5895485467
commit 3b70ba00af
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ import { MemoryLevel } from "memory-level";
import { base58btc } from "multiformats/bases/base58"; import { base58btc } from "multiformats/bases/base58";
import KeyPairEd25519 from "@lumeweb/libs5/lib/ed25519.js"; import KeyPairEd25519 from "@lumeweb/libs5/lib/ed25519.js";
import defer from "p-defer"; import defer from "p-defer";
import { encodeCid } from "@lumeweb/libportal"; import { decodeCid, encodeCid } from "@lumeweb/libportal";
const BIP44_PATH = "m/44'/1627'/0'/0'/0'"; const BIP44_PATH = "m/44'/1627'/0'/0'/0'";
@ -163,7 +163,7 @@ node.services.p2p.once("peerConnected", peerDefer.resolve);
await peerDefer.promise; await peerDefer.promise;
{ {
const cidBytes = base58btc.decode(cid); const cidBytes = decodeCid(cid);
const key = hdKey as HDKey; const key = hdKey as HDKey;
let revision = 0; let revision = 0;
@ -183,7 +183,7 @@ await peerDefer.promise;
CID_TYPES.RESOLVER, CID_TYPES.RESOLVER,
CID_HASH_TYPES.BLAKE3, CID_HASH_TYPES.BLAKE3,
]), ]),
cidBytes, cidBytes.hash,
); );
if (!equalBytes(ret?.data ?? new Uint8Array(), newEntry)) { if (!equalBytes(ret?.data ?? new Uint8Array(), newEntry)) {