Revert "*Use setup event to ensure the RPC channels are setup for the stream only after state sync from the master protomux"

This reverts commit 88a191ae13.
This commit is contained in:
Derrick Hammer 2023-04-06 16:52:37 -04:00
parent 88a191ae13
commit 7b65990741
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 10 deletions

View File

@ -1,13 +1,8 @@
import { addHandler, handleMessage } from "libkmodule";
import type { ActiveQuery } from "libkmodule";
import {
createClient,
Socket,
SwarmClient,
} from "@lumeweb/kernel-swarm-client";
import { createClient, SwarmClient } from "@lumeweb/kernel-swarm-client";
import { RpcNetwork, RpcQueryOptions } from "@lumeweb/rpc-client";
import type { RPCRequest, RPCResponse } from "@lumeweb/interface-relay";
import { setupStream } from "@lumeweb/rpc-client";
onmessage = handleMessage;
@ -103,10 +98,6 @@ async function createNetwork(def = true): Promise<number> {
const id = nextId();
networkInstances.set(id, dhtInstance);
dhtInstance.swarm.on("setup", (socket: Socket) => {
setupStream(socket);
});
return id;
}