mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-23 11:15:33 +00:00
CAKE-198 | fixed saving transaction description in the send_view_model.dart
This commit is contained in:
parent
44536a8231
commit
ac883f3b16
1 changed files with 1 additions and 2 deletions
|
@ -129,8 +129,7 @@ abstract class SendViewModelBase with Store {
|
|||
state = TransactionCommitting();
|
||||
await pendingTransaction.commit();
|
||||
|
||||
if (_settingsStore.shouldSaveRecipientAddress &&
|
||||
(pendingTransaction.id?.isNotEmpty ?? false)) {
|
||||
if (pendingTransaction.id?.isNotEmpty ?? false) {
|
||||
await transactionDescriptionBox.add(TransactionDescription(
|
||||
id: pendingTransaction.id, recipientAddress: address,
|
||||
transactionNote: note));
|
||||
|
|
Loading…
Reference in a new issue