7396cd2cab
* Clippy account manager * Clippy account_manager * Clippy beacon_node/beacon_chain * Clippy beacon_node/client * Clippy beacon_node/eth1 * Clippy beacon_node/eth2-libp2p * Clippy beacon_node/genesis * Clippy beacon_node/network * Clippy beacon_node/rest_api * Clippy beacon_node/src * Clippy beacon_node/store * Clippy eth2/lmd_ghost * Clippy eth2/operation_pool * Clippy eth2/state_processing * Clippy eth2/types * Clippy eth2/utils/bls * Clippy eth2/utils/cahced_tree_hash * Clippy eth2/utils/deposit_contract * Clippy eth2/utils/eth2_interop_keypairs * Clippy eth2/utils/eth2_testnet_config * Clippy eth2/utils/lighthouse_metrics * Clippy eth2/utils/ssz * Clippy eth2/utils/ssz_types * Clippy eth2/utils/tree_hash_derive * Clippy lcli * Clippy tests/beacon_chain_sim * Clippy validator_client * Cargo fmt
63 lines
2.0 KiB
Rust
63 lines
2.0 KiB
Rust
//! These examples only really exist so we can use them for flamegraph. If they get annoying to
|
|
//! maintain, feel free to delete.
|
|
|
|
use rayon::prelude::*;
|
|
use ssz::{Decode, Encode};
|
|
use std::convert::TryInto;
|
|
use store::BeaconStateStorageContainer;
|
|
use types::{
|
|
test_utils::generate_deterministic_keypair, BeaconState, Epoch, Eth1Data, EthSpec, Hash256,
|
|
MainnetEthSpec, Validator,
|
|
};
|
|
|
|
type E = MainnetEthSpec;
|
|
|
|
fn get_state<E: EthSpec>(validator_count: usize) -> BeaconState<E> {
|
|
let spec = &E::default_spec();
|
|
let eth1_data = Eth1Data {
|
|
deposit_root: Hash256::zero(),
|
|
deposit_count: 0,
|
|
block_hash: Hash256::zero(),
|
|
};
|
|
|
|
let mut state = BeaconState::new(0, eth1_data, spec);
|
|
|
|
for i in 0..validator_count {
|
|
state.balances.push(i as u64).expect("should add balance");
|
|
}
|
|
|
|
state.validators = (0..validator_count)
|
|
.collect::<Vec<_>>()
|
|
.par_iter()
|
|
.map(|&i| Validator {
|
|
pubkey: generate_deterministic_keypair(i).pk.into(),
|
|
withdrawal_credentials: Hash256::from_low_u64_le(i as u64),
|
|
effective_balance: spec.max_effective_balance,
|
|
slashed: false,
|
|
activation_eligibility_epoch: Epoch::new(0),
|
|
activation_epoch: Epoch::new(0),
|
|
exit_epoch: Epoch::from(u64::max_value()),
|
|
withdrawable_epoch: Epoch::from(u64::max_value()),
|
|
})
|
|
.collect::<Vec<_>>()
|
|
.into();
|
|
|
|
state.build_all_caches(spec).expect("should build caches");
|
|
|
|
state
|
|
}
|
|
|
|
fn main() {
|
|
let validator_count = 1_024;
|
|
let state = get_state::<E>(validator_count);
|
|
let storage_container = BeaconStateStorageContainer::new(&state);
|
|
|
|
for _ in 0..1024 {
|
|
let container_bytes = storage_container.as_ssz_bytes();
|
|
let _: BeaconState<E> = BeaconStateStorageContainer::from_ssz_bytes(&container_bytes)
|
|
.expect("should decode")
|
|
.try_into()
|
|
.expect("should convert into state");
|
|
}
|
|
}
|