solana/runtime
behzad nouri 7b08cb1f0d
improves performance in replay-stage (#14217)
bank::vote_accounts returns a hash-map which is slow to iterate, but all uses
only require an iterator:
https://github.com/solana-labs/solana/blob/b3dc98856/runtime/src/bank.rs#L4300-L4306
Similarly, calculate_stake_weighted_timestamp takes a hash-map whereas it only
requires an iterator:
https://github.com/solana-labs/solana/blob/b3dc98856/sdk/src/stake_weighted_timestamp.rs#L21-L28
2020-12-21 19:18:19 +00:00
..
benches Clippy 2020-12-14 08:03:29 -08:00
src improves performance in replay-stage (#14217) 2020-12-21 19:18:19 +00:00
store-tool Bump version to v1.6.0 2020-12-15 18:28:04 +00:00
tests Fix slow/stuck unstaking due to toggling in epoch (#13501) 2020-11-11 14:11:57 -07:00
.gitignore
Cargo.toml Bump version to v1.6.0 2020-12-15 18:28:04 +00:00
build.rs