From c650435d8caf68dbed576322462266d844e12825 Mon Sep 17 00:00:00 2001 From: OleksandrSobol Date: Mon, 4 Oct 2021 17:25:27 +0300 Subject: [PATCH] CAKE-360 | added emoji and extracted address to transaction details --- lib/view_model/send/send_view_model.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/view_model/send/send_view_model.dart b/lib/view_model/send/send_view_model.dart index 2fc37e7a..47811790 100644 --- a/lib/view_model/send/send_view_model.dart +++ b/lib/view_model/send/send_view_model.dart @@ -155,7 +155,9 @@ abstract class SendViewModelBase with Store { @action Future commitTransaction() async { String address = outputs.fold('', (acc, value) { - return acc + value.address + '\n\n'; + return value.isParsedAddress + ? acc + value.address + '\n' + value.extractedAddress + '\n\n' + : acc + value.address + '\n\n'; }); address = address.trim();