You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The portalnetwork class has a few rough edges related to network start up that we should address. These are currently handled by the cli package but it can lead to not obvious problems trying to start a client inline.
The bindAddress parameter needs to have a sensible default. If this is undefined, discv5 crashes the entire application with an uncatchable exception and I'm not sure why
We should probably embed the bootnode list in the client as an optional default if people want to quick start a node. This will be especially important in the UltralightProvider class once we merge that updated code in
The text was updated successfully, but these errors were encountered:
Sure, just to note, these changes should be in the portalnetwork package.
A sensible default for bindAddress is probably just 0.0.0.0
Put the bootnode list in a javascript object and not a JSON file so we can just load it without having to do a JSON import or any file reads.
If you want to have a look at the docs and add any clarifications you identify related to network startup along the way, that'd be great as well.
The
portalnetwork
class has a few rough edges related to network start up that we should address. These are currently handled by thecli
package but it can lead to not obvious problems trying to start a client inline.bindAddress
parameter needs to have a sensible default. If this is undefined,discv5
crashes the entire application with an uncatchable exception and I'm not sure whyUltralightProvider
class once we merge that updated code inThe text was updated successfully, but these errors were encountered: