1use whisky_common::{Vote, WError}; 2 3use super::TxParser; 4 5impl TxParser { 6 pub fn votes(&mut self) -> Result<Vec<Vote>, WError> { 7 Ok(vec![]) 8 } 9}