Ensure that staked nodes is populated before returning length (#26293)
This commit is contained in:
parent
028c3eba8f
commit
50631e274d
|
@ -66,7 +66,7 @@ impl VoteAccounts {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn num_staked_nodes(&self) -> usize {
|
pub fn num_staked_nodes(&self) -> usize {
|
||||||
self.staked_nodes.read().unwrap().len()
|
self.staked_nodes().len()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue