Fix wrong print message

This commit is contained in:
Sik Yoon 2024-05-20 04:05:37 +09:00
parent 162ff464c3
commit f92786fdcf

View File

@ -308,7 +308,7 @@ pub async fn select_listuped_positions() -> Result<Vec<PositionCoinList>, Box<dy
if select_result.is_ok() { if select_result.is_ok() {
Ok(select_result.unwrap()) Ok(select_result.unwrap())
} else { } else {
eprint!("select_filled_positions() error!"); eprint!("select_listup_positions() error!");
Err("error")? Err("error")?
} }
} }