Skip to content

Commit a016c68

Browse files
committed
Fix Fuego network default RPC port
- Update defaultRpcPort from 28180 to 18180 (correct Fuego network default) - Update settings screen hint text to show correct port format - Align with actual Fuego network configuration
1 parent f265f85 commit a016c68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/screens/settings/settings_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ class _SettingsScreenState extends State<SettingsScreen> {
240240
TextField(
241241
controller: customNodeController,
242242
decoration: InputDecoration(
243-
hintText: 'node.example.com:28180',
243+
hintText: 'node.example.com:18180',
244244
hintStyle: TextStyle(color: AppTheme.textSecondary.withOpacity(0.5)),
245245
enabledBorder: OutlineInputBorder(
246246
borderSide: BorderSide(color: AppTheme.textSecondary.withOpacity(0.3)),

lib/services/fuego_rpc_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class FuegoRPCService {
99
String _baseUrl;
1010
final String? _password;
1111

12-
static const int defaultRpcPort = 28180;
12+
static const int defaultRpcPort = 18180;
1313
static const int defaultWalletPort = 8070;
1414

1515
// Default remote Fuego nodes (public community nodes)

0 commit comments

Comments
 (0)