//! # Staking core data structure
//!//! including Staking
//!#[derive(Debug)]pubstructStaking{/// enable staking or not
pubenable:bool,
/// current block height
pubblock_height:u64,
/// validators at current block height
pubvalidators:Vec<String>,
/// amount of Native is staking
pubweight:u64,
/// amount of redeem en the way
pubredeem:u64,
/// staking op transactions at current block height
pubtxs:Vec<String>,
}pubfnhello(){println!("Hello, staking!");}