save the output state

This commit is contained in:
Serhii 2023-03-24 10:07:05 +02:00
parent bcf7e77d65
commit 52fd029c7d
4 changed files with 5 additions and 5 deletions
cw_bitcoin
cw_core
cw_monero
lib/view_model/unspent_coins

View file

@ -746,5 +746,5 @@ packages:
source: hosted
version: "3.1.1"
sdks:
dart: ">=2.19.0 <3.0.0"
dart: ">=2.19.0 <4.0.0"
flutter: ">=3.0.0"

View file

@ -665,5 +665,5 @@ packages:
source: hosted
version: "3.1.1"
sdks:
dart: ">=2.19.0 <3.0.0"
dart: ">=2.19.0 <4.0.0"
flutter: ">=3.0.0"

View file

@ -672,5 +672,5 @@ packages:
source: hosted
version: "3.1.1"
sdks:
dart: ">=2.19.0 <3.0.0"
dart: ">=2.19.0 <4.0.0"
flutter: ">=3.0.0"

View file

@ -35,9 +35,9 @@ abstract class UnspentCoinsListViewModelBase with Store {
address: elem.address,
amount: amount,
hash: elem.hash,
isFrozen: elem.isFrozen,
isFrozen: info.isFrozen,
note: info.note,
isSending: elem.isSending
isSending: info.isSending
);
}));