Skip to content

Commit

Permalink
pkg/model from liq: minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
saiy2k committed Apr 2, 2024
1 parent f60a5b7 commit 2816efc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
12 changes: 6 additions & 6 deletions lib/_model/wallet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -381,12 +381,12 @@ class Wallet with _$Wallet {
@freezed
class Balance with _$Balance {
const factory Balance({
required final int immature,
required final int trustedPending,
required final int untrustedPending,
required final int confirmed,
required final int spendable,
required final int total,
required int immature,
required int trustedPending,
required int untrustedPending,
required int confirmed,
required int spendable,
required int total,
}) = _Balance;
const Balance._();

Expand Down
7 changes: 0 additions & 7 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,11 @@ dependencies:
git:
url: https://github.com/SatoshiPortal/boltz-dart.git
ref: trunk
<<<<<<< HEAD
flutter_svg: ^2.0.10+1
# lwk_dart:
# git:
# url: https://github.com/SatoshiPortal/lwk-dart
# ref: trunk
=======
lwk_dart:
git:
url: https://github.com/SatoshiPortal/lwk-dart
ref: trunk
>>>>>>> 6e0e1cb (Squashed liq branch)



Expand Down

0 comments on commit 2816efc

Please sign in to comment.