mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
fix the issue with updating sending outputs (#1785)
This commit is contained in:
parent
740f466e77
commit
4916d1f457
1 changed files with 2 additions and 1 deletions
|
@ -400,7 +400,8 @@ abstract class SendViewModelBase extends WalletChangeListenerViewModel with Stor
|
||||||
final updatedOutputs = bitcoin!.updateOutputs(pendingTransaction!, outputs);
|
final updatedOutputs = bitcoin!.updateOutputs(pendingTransaction!, outputs);
|
||||||
|
|
||||||
if (outputs.length == updatedOutputs.length) {
|
if (outputs.length == updatedOutputs.length) {
|
||||||
outputs = ObservableList.of(updatedOutputs);
|
outputs.clear();
|
||||||
|
outputs.addAll(updatedOutputs);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue