Skip to content

Commit

Permalink
Added some logging around peer discovery to try and identify excessiv…
Browse files Browse the repository at this point in the history
…e session creation.
  • Loading branch information
thesemaphoreslim committed Oct 29, 2024
1 parent e93e342 commit 5067f35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/blockchain/FullNodePeer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,7 @@ export class FullNodePeer {
error.message.includes("WebSocket") ||
error.message.includes("Operation timed out")
) {
console.log('Running getBestPeer from createPeerProxy...')
const newPeer = await this.getBestPeer();
return (newPeer as any)[prop](...args);
}
Expand Down
2 changes: 2 additions & 0 deletions src/blockchain/ServerCoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ export class ServerCoin {
// Check if the result is already cached
const cachedPeers = await serverCoinPeersCache.get<string[]>(cacheKey);
if (cachedPeers) {
console.log('Using cachedPeers')
return cachedPeers;
}

Expand All @@ -203,6 +204,7 @@ export class ServerCoin {
BigInt(epoch)
);

console.log('Calling FullNodePeer.connect...');
const peer = await FullNodePeer.connect();
const maxClvmCost = BigInt(11_000_000_000);

Expand Down

0 comments on commit 5067f35

Please sign in to comment.