feat(daemon): wire PairingStore from SessionStore into PairingManager
This commit is contained in:
+2
-1
@@ -101,7 +101,8 @@ export async function startDaemon(config: Config): Promise<DaemonContext> {
|
||||
|
||||
// ── Gateway & Channels ──
|
||||
const channelRegistry = new ChannelRegistry();
|
||||
const pairingManager = initPairingManager(config);
|
||||
const pairingStore = config.pairing.enabled ? sessionStore.getPairingStore() : undefined;
|
||||
const pairingManager = initPairingManager(config, pairingStore);
|
||||
|
||||
let channelAgents: ReturnType<typeof createMessageRouter>['agents'] | null = null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user