Ensure that staked nodes is populated before returning length (#26293)

This commit is contained in:
Justin Starry 2022-06-28 20:15:42 +01:00 committed by GitHub
parent 028c3eba8f
commit 50631e274d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ impl VoteAccounts {
}
pub fn num_staked_nodes(&self) -> usize {
self.staked_nodes.read().unwrap().len()
self.staked_nodes().len()
}
}