refactor: add registry message handling back in

This commit is contained in:
Derrick Hammer 2023-08-31 02:30:19 -04:00
parent 68b7ffa855
commit 56bb5007f6
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 6 additions and 4 deletions

View File

@ -11,6 +11,7 @@ import {
protocolMethodHandshakeOpen,
protocolMethodHashQuery,
protocolMethodSignedMessage,
recordTypeRegistryEntry,
recordTypeStorageLocation,
storageLocationTypeFull,
} from "../constants.js";
@ -111,11 +112,12 @@ export class P2PService {
// p.packInt(protocolVersion);
peer.sendMessage(await this.signMessageSimple(p.takeBytes()));
return;
} /*else if (method === recordTypeRegistryEntry) {
const sre = node.registry.deserializeRegistryEntry(event);
await node.registry.set(sre, { receivedFrom: peer });
} else if (method === recordTypeRegistryEntry) {
const sre =
this.config.services.registry.deserializeRegistryEntry(event);
await this.config.services.registry.set(sre, false, peer);
return;
}*/ else if (method === recordTypeStorageLocation) {
} else if (method === recordTypeStorageLocation) {
const hash = new Multihash(event.subarray(1, 34));
const type = event[34];
const expiry = decodeEndian(event.subarray(35, 39));