-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: implement p2p prover and verifier #114
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work, huge change 😅
I could not test it yet, but I already left some comments
src/entries/Background/ws.ts
Outdated
}; | ||
|
||
export const cancelPairRequest = async (target: string) => { | ||
const { socket, clientId } = state; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A lot of repetitive code here -> add function?
src/pages/Home/index.tsx
Outdated
}): ReactElement { | ||
return ( | ||
<button | ||
className={classNames( | ||
'flex flex-col flex-nowrap items-center justify-center', | ||
'text-white px-2 py-1 gap-1 opacity-90 hover:opacity-100', | ||
// { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commented code?
No description provided.