Skip to content

Commit 76cdd0f

Browse files
committed
bump version
1 parent c17ff86 commit 76cdd0f

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

ios/HeliumWallet.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,7 @@
11051105
"$(inherited)",
11061106
"@executable_path/Frameworks",
11071107
);
1108-
MARKETING_VERSION = 2.11.7;
1108+
MARKETING_VERSION = 2.11.8;
11091109
ONLY_ACTIVE_ARCH = NO;
11101110
OTHER_LDFLAGS = (
11111111
"$(inherited)",
@@ -1143,7 +1143,7 @@
11431143
"$(inherited)",
11441144
"@executable_path/Frameworks",
11451145
);
1146-
MARKETING_VERSION = 2.11.7;
1146+
MARKETING_VERSION = 2.11.8;
11471147
OTHER_LDFLAGS = (
11481148
"$(inherited)",
11491149
"-ObjC",
@@ -1329,7 +1329,7 @@
13291329
"@executable_path/Frameworks",
13301330
"@executable_path/../../Frameworks",
13311331
);
1332-
MARKETING_VERSION = 2.11.7;
1332+
MARKETING_VERSION = 2.11.8;
13331333
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
13341334
MTL_FAST_MATH = YES;
13351335
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
@@ -1374,7 +1374,7 @@
13741374
"@executable_path/Frameworks",
13751375
"@executable_path/../../Frameworks",
13761376
);
1377-
MARKETING_VERSION = 2.11.7;
1377+
MARKETING_VERSION = 2.11.8;
13781378
MTL_FAST_MATH = YES;
13791379
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
13801380
PRODUCT_BUNDLE_IDENTIFIER = com.helium.wallet.app.OneSignalNotificationServiceExtension;
@@ -1422,7 +1422,7 @@
14221422
"@executable_path/Frameworks",
14231423
"@executable_path/../../Frameworks",
14241424
);
1425-
MARKETING_VERSION = 2.11.7;
1425+
MARKETING_VERSION = 2.11.8;
14261426
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
14271427
MTL_FAST_MATH = YES;
14281428
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
@@ -1471,7 +1471,7 @@
14711471
"@executable_path/Frameworks",
14721472
"@executable_path/../../Frameworks",
14731473
);
1474-
MARKETING_VERSION = 2.11.7;
1474+
MARKETING_VERSION = 2.11.8;
14751475
MTL_FAST_MATH = YES;
14761476
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
14771477
PRODUCT_BUNDLE_IDENTIFIER = com.helium.wallet.app.HeliumWalletWidget;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "helium-wallet",
3-
"version": "2.11.7",
3+
"version": "2.11.8",
44
"private": true,
55
"scripts": {
66
"postinstall": "patch-package && ./node_modules/.bin/rn-nodeify --hack --install && npx jetify",

src/features/governance/PositionsScreen.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,20 +110,23 @@ export const PositionsScreen = () => {
110110
sigs = [],
111111
onProgress = () => {},
112112
sequentially = false,
113+
computeScaleUp = undefined,
113114
}: {
114115
header: string
115116
message: string
116117
instructions: TransactionInstruction[]
117118
sigs?: Keypair[]
118119
onProgress?: (status: Status) => void
119120
sequentially?: boolean
121+
computeScaleUp?: number
120122
}) => {
121123
if (!anchorProvider || !walletSignBottomSheetRef) return
122124

123125
const transactions = await batchInstructionsToTxsWithPriorityFee(
124126
anchorProvider,
125127
instructions,
126128
{
129+
computeScaleUp,
127130
basePriorityFee: await getBasePriorityFee(),
128131
addressLookupTableAddresses: [
129132
cluster === 'devnet' ? HELIUM_COMMON_LUT_DEVNET : HELIUM_COMMON_LUT,
@@ -224,6 +227,7 @@ export const PositionsScreen = () => {
224227
message: 'Approve this transaction to claim your rewards',
225228
instructions: ixs,
226229
onProgress: setStatusOfClaim,
230+
computeScaleUp: 1.4,
227231
}),
228232
})
229233

0 commit comments

Comments
 (0)