Skip to content

Commit 5888d25

Browse files
committed
Update networkType to use string union type
The upstream react-native-monero-lwsf PR changed NetworkType from a numeric enum to a string union type ('MAINNET' | 'TESTNET' | 'STAGENET'). Made-with: Cursor
1 parent 5d6a96d commit 5888d25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/monero/moneroInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111

1212
const networkInfo: MoneroNetworkInfo = {
1313
edgeLwsServer: EDGE_MONERO_LWS_SERVER,
14-
networkType: 0
14+
networkType: 'MAINNET'
1515
}
1616

1717
const defaultSettings: MoneroUserSettings = {

0 commit comments

Comments
 (0)