-
Notifications
You must be signed in to change notification settings - Fork 95
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
p2p: start listening to P2P messages only after contract and metadata sync #1805
base: stage
Are you sure you want to change the base?
Conversation
break | ||
} | ||
} | ||
if !hasMetadata { |
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.
I'm not sure why but the original logic used to fetch and update if none of the shares have metadata (the !share.Liquidated
part of the condition is useless because shares
contains non-liquidated shares)
This is changed to fetching all public keys if at least one share metadata is missing, however, probably we want to modify this logic
Closes #1712