mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 11:31:08 +03:00
wallet: avoid display the long file name on txs (#2445)
This commit is contained in:
parent
be5e83ff3a
commit
6b5212e7ec
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue