1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
use std::{collections::BTreeMap, fmt::Display, vec::Vec}; use core::fmt; use uint::static_assertions::_core::fmt::Formatter; use casper_types::{ bytesrepr, bytesrepr::ToBytes, CLValueError, EraId, Key, ProtocolVersion, PublicKey, U512, }; use crate::{ core::engine_state::{execution_effect::ExecutionEffect, Error, GetEraValidatorsError}, shared::{newtypes::Blake2bHash, TypeMismatch}, }; #[derive(Debug)] pub struct SlashItem { pub validator_id: PublicKey, } impl SlashItem { pub fn new(validator_id: PublicKey) -> Self { Self { validator_id } } } #[derive(Debug)] pub struct RewardItem { pub validator_id: PublicKey, pub value: u64, } impl RewardItem { pub fn new(validator_id: PublicKey, value: u64) -> Self { Self { validator_id, value, } } } #[derive(Debug)] pub struct EvictItem { pub validator_id: PublicKey, } impl EvictItem { pub fn new(validator_id: PublicKey) -> Self { Self { validator_id } } } #[derive(Debug)] pub struct StepRequest { pub pre_state_hash: Blake2bHash, pub protocol_version: ProtocolVersion, pub slash_items: Vec<SlashItem>, pub reward_items: Vec<RewardItem>, pub evict_items: Vec<EvictItem>, pub run_auction: bool, pub next_era_id: EraId, pub era_end_timestamp_millis: u64, } impl StepRequest { #[allow(clippy::too_many_arguments)] pub fn new( pre_state_hash: Blake2bHash, protocol_version: ProtocolVersion, slash_items: Vec<SlashItem>, reward_items: Vec<RewardItem>, evict_items: Vec<EvictItem>, run_auction: bool, next_era_id: EraId, era_end_timestamp_millis: u64, ) -> Self { Self { pre_state_hash, protocol_version, slash_items, reward_items, evict_items, run_auction, next_era_id, era_end_timestamp_millis, } } pub fn slashed_validators(&self) -> Result<Vec<PublicKey>, bytesrepr::Error> { let mut ret = vec![]; for slash_item in &self.slash_items { let public_key: PublicKey = bytesrepr::deserialize(slash_item.validator_id.clone().to_bytes()?)?; ret.push(public_key); } Ok(ret) } pub fn reward_factors(&self) -> Result<BTreeMap<PublicKey, u64>, bytesrepr::Error> { let mut ret = BTreeMap::new(); for reward_item in &self.reward_items { ret.insert(reward_item.validator_id.clone(), reward_item.value); } Ok(ret) } } #[derive(Debug)] pub enum StepResult { RootNotFound, GetProtocolDataError(Error), TrackingCopyError(Error), GetContractError(Error), GetSystemModuleError(Error), SlashingError(Error), AuctionError(Error), DistributeError(Error), InvalidProtocolVersion, KeyNotFound(Key), TypeMismatch(TypeMismatch), Serialization(bytesrepr::Error), CLValueError(CLValueError), GetEraValidatorsError(GetEraValidatorsError), EraValidatorsMissing(EraId), Success { post_state_hash: Blake2bHash, next_era_validators: BTreeMap<PublicKey, U512>, execution_effect: ExecutionEffect, }, } impl Display for StepResult { fn fmt(&self, f: &mut Formatter) -> fmt::Result { write!(f, "{:?}", self) } }