wallet: avoid display the long file name on txs (#2445)

This commit is contained in:
Gary Yu 2019-01-22 21:30:50 +08:00 committed by Yeastplume
parent be5e83ff3a
commit 6b5212e7ec

View file

@ -184,7 +184,7 @@ pub fn txs(
) )
}; };
let tx_data = match t.stored_tx { let tx_data = match t.stored_tx {
Some(t) => format!("{}", t), Some(_) => "Yes".to_owned(),
None => "None".to_owned(), None => "None".to_owned(),
}; };
if dark_background_color_scheme { if dark_background_color_scheme {