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
I still think that the following should be faster:
let mut to_process = Vec::new();
while at.number() > last_finalized.number() {
if self.view_exists(at.hash()) { break }
to_process.push(at.hash());
at = at.parent();
}
No need to get a tree route down to the finalized block.
I still think that the following should be faster:
No need to get a tree route down to the finalized block.
Originally posted by @bkchr in #4639 (comment)
The text was updated successfully, but these errors were encountered: