mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-03 17:40:43 +00:00
CAKE-360 | added emoji and extracted address to transaction details
This commit is contained in:
parent
c728931b70
commit
c650435d8c
1 changed files with 3 additions and 1 deletions
|
@ -155,7 +155,9 @@ abstract class SendViewModelBase with Store {
|
|||
@action
|
||||
Future<void> 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();
|
||||
|
|
Loading…
Reference in a new issue