1use whisky_common::WError; 2 3use super::TxParser; 4 5impl TxParser { 6 pub fn change_address(&mut self) -> Result<String, WError> { 7 Ok("".to_string()) 8 } 9}