remove unnecessary casts (#31461)

This commit is contained in:
Jeff Washington (jwash) 2023-05-03 10:54:25 -05:00 committed by GitHub
parent 9a4618a049
commit ddd1f2fce0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2461,8 +2461,8 @@ impl Bank {
("active_stake", active_stake, i64),
("pre_capitalization", capitalization, i64),
("post_capitalization", self.capitalization(), i64),
("num_stake_accounts", num_stake_accounts as i64, i64),
("num_vote_accounts", num_vote_accounts as i64, i64),
("num_stake_accounts", num_stake_accounts, i64),
("num_vote_accounts", num_vote_accounts, i64),
);
}