Skip to content

Commit

Permalink
fix the issue with updating sending outputs (#1785)
Browse files Browse the repository at this point in the history
  • Loading branch information
Serhii-Borodenko authored Nov 1, 2024
1 parent 740f466 commit 4916d1f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/view_model/send/send_view_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,8 @@ abstract class SendViewModelBase extends WalletChangeListenerViewModel with Stor
final updatedOutputs = bitcoin!.updateOutputs(pendingTransaction!, outputs);

if (outputs.length == updatedOutputs.length) {
outputs = ObservableList.of(updatedOutputs);
outputs.clear();
outputs.addAll(updatedOutputs);
}
}

Expand Down

0 comments on commit 4916d1f

Please sign in to comment.