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
Describe one or several (or none) solutions to fix the problem describe above.
While connected to the defaultBootstrap like
exportdefaultfunctionFeed({ topic, id }: {topic: string,id:string}){return(<LightNodeProvideroptions={{defaultBootstrap: true}}protocols={[Protocols.LightPush,Protocols.Store]}><divclassName="m-5 flex flex-col gap-5"><PageHeadertitle="Feed"subtitle="See what other think about this topic"/><WakuFeedtopic={topic}id={id}/></div></LightNodeProvider>);}
already tried to add different protocols to see if that makes a different. but it did not.
import{useWaku}from"@waku/react";importCreateFeedfrom"./create-feed";importRetrieveMessagesfrom"./retrieve-messages";exportdefaultfunctionWakuFeed({ topic, id }: {topic: string;id: string}){// Create and start a Light Nodeconst{ node, error, isLoading }=useWaku();if(isLoading)return<div>Loading...</div>
if(error)return<div>Error: {JSON.stringify(error)}</div>return(<><divclassName="py-5">{node&&<CreateFeedcontentTopic={topic}node={node}/>}
{node&&<RetrieveMessagescontentTopic={topic}node={node}/>}</div>{/* <Post key={index} details={message} /> */}</>);}
If this is a bug report and you know how to fix the problem, feel free to include a proposal or open a PR.
Or feel free to omit this section. @vpavlin said the following in discord:
This error comes from the service node (nwaku) when there is a problem with Lightpush connection
THe js-waku involvement there should be probably to attempt a reconnection with the node or picking up a different node in case of this error (which it does not do at the moment)
Notes
The text was updated successfully, but these errors were encountered:
This problem should be fixed within next version of the library.
How new version should be used - waku-org/lab.waku.org#60
Please, install npm i -S @waku/sdk@next or any other library and tell if it helps with the issue observed.
This is a bug report
Problem
Having problem getting a correct connection with default defaultBootstrap, it throws me an ['remote pair fault']
Packages
packages:
Proposed Solutions
Describe one or several (or none) solutions to fix the problem describe above.
While connected to the defaultBootstrap like
This is the way I send the message:
If this is a bug report and you know how to fix the problem, feel free to include a proposal or open a PR.
Or feel free to omit this section.
@vpavlin said the following in discord:
This error comes from the service node (nwaku) when there is a problem with Lightpush connection
THe js-waku involvement there should be probably to attempt a reconnection with the node or picking up a different node in case of this error (which it does not do at the moment)
Notes
The text was updated successfully, but these errors were encountered: