decentralised sync engine

fix: handshakes during setup should continue not return

serenity a1e58150 35a01b6e

Changed files
+1 -1
src
lib
+1 -1
src/lib/setup.ts
···
did: shardDid,
channels: channelAtUris,
});
-
if (!handshakeResult.ok) return;
const sessionInfo = handshakeResult.data;
console.log("Handshake to", shardAtUri.rKey, "complete!");
console.log("Session info:", sessionInfo);
···
did: shardDid,
channels: channelAtUris,
});
+
if (!handshakeResult.ok) continue;
const sessionInfo = handshakeResult.data;
console.log("Handshake to", shardAtUri.rKey, "complete!");
console.log("Session info:", sessionInfo);