Skip to content

Commit

Permalink
Fixes after merging upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p committed Jun 14, 2024
1 parent 68a9816 commit 1611248
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<receiver
android:name=".BitcoinPriceWidget"
android:exported="true"
android:label="Bitcoin Price Widget">
android:label="Groestlcoin Price Widget">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void onCreate() {
// If you opted-in for the New Architecture, we load the native entry point for this app.
DefaultNewArchitectureEntryPoint.load();
}
SharedPreferences sharedPref = getApplicationContext().getSharedPreferences("group.io.bluewallet.bluewallet", Context.MODE_PRIVATE);
SharedPreferences sharedPref = getApplicationContext().getSharedPreferences("group.org.groestlcoin.bluewallet123", Context.MODE_PRIVATE);

// Retrieve the "donottrack" value. Default to "0" if not found.
String isDoNotTrackEnabled = sharedPref.getString("donottrack", "0");
Expand Down
4 changes: 2 additions & 2 deletions components/ReplaceFeeSuggestions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const ReplaceFeeSuggestions: React.FC<ReplaceFeeSuggestionsProps> = ({ onFeeSele
</View>
</View>
<View style={styles.rateContainer}>
<Text style={stylesHook.rateText}>{rate} sat/byte</Text>
<Text style={stylesHook.rateText}>{rate} gro/byte</Text>
</View>
</TouchableOpacity>
))}
Expand All @@ -157,7 +157,7 @@ const ReplaceFeeSuggestions: React.FC<ReplaceFeeSuggestionsProps> = ({ onFeeSele
placeholder={loc.send.fee_satvbyte}
placeholderTextColor="#81868e"
/>
<Text style={stylesHook.rateText}>sat/byte</Text>
<Text style={stylesHook.rateText}>gro/byte</Text>
</View>
</TouchableOpacity>
<BlueText style={stylesHook.alternativeText}>{loc.formatString(loc.send.fee_replace_minvb, { min: transactionMinimum })}</BlueText>
Expand Down
6 changes: 3 additions & 3 deletions components/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ export interface ToolTipMenuProps {
}

export enum HandOffActivityType {
ReceiveOnchain = 'io.bluewallet.bluewallet.receiveonchain',
Xpub = 'io.bluewallet.bluewallet.xpub',
ViewInBlockExplorer = 'io.bluewallet.bluewallet.blockexplorer',
ReceiveOnchain = 'org.groestlcoin.bluewallet123.receiveonchain',
Xpub = 'org.groestlcoin.bluewallet123.xpub',
ViewInBlockExplorer = 'org.groestlcoin.bluewallet123.blockexplorer',
}

export interface HandOffComponentProps {
Expand Down
2 changes: 1 addition & 1 deletion loc/bqi.json
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
"header": "سامووا",
"language": "زۉ",
"last_updated": "ورۊ رسۊوی دیندایی",
"language_isRTL": "ره وندن دووارته BlueWallet سی انجوم آلشت کاریا ری زۉ الن وا انجوم بۊ.",
"language_isRTL": "ره وندن دووارته GRS BlueWallet سی انجوم آلشت کاریا ری زۉ الن وا انجوم بۊ.",
"license": "موجوز",
"lightning_error_lndhub_uri": "یۊآرآی LNDHub زبال نؽ",
"lightning_saved": "آلشت کاریا ایسا وه خۊوی زفت وابین.",
Expand Down
2 changes: 1 addition & 1 deletion screen/send/success.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const Success = () => {
<HandOffComponent
title={loc.transactions.details_title}
type={HandOffActivityType.ViewInBlockExplorer}
url={`https://mempool.space/tx/${txid}`}
url={`https://esplora.groestlcoin.org/tx/${txid}`}
/>
)}
</SafeArea>
Expand Down

0 comments on commit 1611248

Please sign in to comment.