We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
KVState.keys()
Once MegaMap is implemented , in addition to stopping the use of KVState.size() method, using KVState.keys() is not going to be performance efficient.
KVState.size()
public Iterator<K> keys() { return iterateFromDataSource(); }
For example, This is used to iterate through StakingInfo map. Replace the usage of keys method and instead get all nodes from roster entries.
StakingInfo
The text was updated successfully, but these errors were encountered:
Neeharika-Sompalli
No branches or pull requests
Once MegaMap is implemented , in addition to stopping the use of
KVState.size()
method, usingKVState.keys()
is not going to be performance efficient.For example, This is used to iterate through
StakingInfo
map. Replace the usage of keys method and instead get all nodes from roster entries.The text was updated successfully, but these errors were encountered: