From 50631e274d834518dfb1ad8c3eadb6eca10e8c1f Mon Sep 17 00:00:00 2001 From: Justin Starry Date: Tue, 28 Jun 2022 20:15:42 +0100 Subject: [PATCH] Ensure that staked nodes is populated before returning length (#26293) --- runtime/src/vote_account.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/vote_account.rs b/runtime/src/vote_account.rs index 5e492d7fd3..3aaf830f17 100644 --- a/runtime/src/vote_account.rs +++ b/runtime/src/vote_account.rs @@ -66,7 +66,7 @@ impl VoteAccounts { } pub fn num_staked_nodes(&self) -> usize { - self.staked_nodes.read().unwrap().len() + self.staked_nodes().len() } }