Bug fix for tx address in history tab

This commit is contained in:
Hanh 2022-03-26 10:39:45 +08:00
parent 90760786fd
commit a2607930ac
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ pub async fn decode_transaction(
// taddress is not always ours // taddress is not always ours
let address = let address =
// let's use the zaddr from ovk first, then the ivk then the taddr // let's use the zaddr from ovk first, then the ivk then the taddr
if taddress.is_empty() { zaddress } else { taddress }; if zaddress.is_empty() { taddress } else { zaddress };
let memo = match tx_memo { let memo = match tx_memo {
Memo::Empty => "".to_string(), Memo::Empty => "".to_string(),