Skip to content

Commit

Permalink
Merge pull request #1075 from tonwhales/release/v2.3.16
Browse files Browse the repository at this point in the history
Release/v2.3.16
  • Loading branch information
vzhovnitsky authored Sep 23, 2024
2 parents 65ceb09 + 44bcdfb commit bba042d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION_CODE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
209
210
7 changes: 5 additions & 2 deletions app/fragments/secure/components/TransferSingle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,9 @@ export const TransferSingle = memo((props: ConfirmLoadedPropsSingle) => {
}
}, [registerPending, jettonAmountString, jetton, fees]);

const isGasless = fees.type === 'gasless' && fees.params.ok;
const setUseGasless = isGasless ? onSetUseGasless : undefined;

return (
<TransferSingleView
operation={operation}
Expand All @@ -477,8 +480,8 @@ export const TransferSingle = memo((props: ConfirmLoadedPropsSingle) => {
isWithStateInit={!!order.messages[0].stateInit}
contact={contact}
failed={failed}
isGasless={fees.type === 'gasless' && fees.params.ok}
onSetUseGasless={onSetUseGasless}
isGasless={isGasless}
onSetUseGasless={setUseGasless}
/>
);
});
4 changes: 2 additions & 2 deletions ios/wallet/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>2.3.15</string>
<string>2.3.16</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -41,7 +41,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>209</string>
<string>210</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationQueriesSchemes</key>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wallet",
"version": "2.3.15",
"version": "2.3.16",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
Expand Down

0 comments on commit bba042d

Please sign in to comment.