refactor: change confirmations to non-late and add default value (#3148)
David Adegoke committed
Apr 1, 2026 at 10:51 UTC
2c7f8d136849637a2502ee59358981885259a741
1 file changed
+1
-1
cw_core/lib/transaction_info.dart
+1
-1
@@ -10,7 +10,7 @@ abstract class TransactionInfo extends Object with Keyable {
10
late bool isPending;
11
late DateTime date;
12
int? height;
13
- late int confirmations;
13
+ int confirmations = 0;
14
String amountFormatted();
15
String fiatAmount();
16
String? feeFormatted();