Skip to content

Commit

Permalink
chore: update libp2p components
Browse files Browse the repository at this point in the history
  • Loading branch information
mkermani144 committed Jun 30, 2024
1 parent 1d49b4f commit 2d6dec3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/scaling-large-messages/src/node/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const node = await createRoseNetNode({
relayMultiaddrs: [process.env.RELAY_MULTIADDR!],
privateKey: process.env.PRIVATE_KEY!,
debug: {
libp2pComponents: ['*'],
libp2pComponents: ['libp2p:circuit-relay:transport'],
},
});

Expand Down
5 changes: 4 additions & 1 deletion tests/scaling-large-messages/src/relay/relay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ const node = await createRoseNetRelay({
whitelist: process.env.WHITELIST!.split(','),
maxReservations: 40,
debug: {
libp2pComponents: ['*'],
libp2pComponents: [
'libp2p:circuit-relay:transport',
'libp2p:circuit-relay:server',
],
},
});

Expand Down

0 comments on commit 2d6dec3

Please sign in to comment.