fix: Missing tokens in tron wallets (#2501)

David Adegoke committed Sep 5, 2025 at 13:01 UTC 1c1ce918237b1052b25ac3703f5fee8799cae200
1 file changed +2
cw_tron/lib/tron_wallet_service.dart
+2
@@ -67,6 +67,7 @@ class TronWalletService extends WalletService<
67 );
68
69 await wallet.init();
70 + wallet.addInitialTokens();
71 await wallet.save();
72 saveBackup(name);
73 return wallet;
@@ -81,6 +82,7 @@ class TronWalletService extends WalletService<
82 );
83
84 await wallet.init();
85 + wallet.addInitialTokens();
86 await wallet.save();
87 return wallet;
88 }