Skip to content

Commit

Permalink
Merge pull request #3439 from safe-global/GH-3438/ios18
Browse files Browse the repository at this point in the history
GH-3438 Fix compile error
  • Loading branch information
DmitryBespalov authored Aug 2, 2024
2 parents 78a5c07 + 62adaf3 commit 0834290
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Multisig/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>3.26.1</string>
<string>3.26.2</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand Down
4 changes: 2 additions & 2 deletions Multisig/Logic/Models/PrivateKey/web3swift/BIP32HDNode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ extension HDNode {
newPath = self.path! + "/"
newPath += try! String(newNode.index % HDNode.hardenedIndexPrefix) + "'"
} else {
newPath = try! self.path! + "/" + String(newNode.index)
newPath = try! (self.path! + "/" + String(newNode.index))
}
newNode.path = newPath
return newNode
Expand Down Expand Up @@ -246,7 +246,7 @@ extension HDNode {
newPath = self.path! + "/"
newPath += try! String(newNode.index % HDNode.hardenedIndexPrefix) + "'"
} else {
newPath = try! self.path! + "/" + String(newNode.index)
newPath = try! (self.path! + "/" + String(newNode.index))
}
newNode.path = newPath
return newNode
Expand Down
2 changes: 1 addition & 1 deletion MultisigIntegrationTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>3.26.1</string>
<string>3.26.2</string>
<key>CFBundleVersion</key>
<string>3</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion MultisigTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>3.26.1</string>
<string>3.26.2</string>
<key>CFBundleVersion</key>
<string>3</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion NotificationServiceExtension/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>3.26.1</string>
<string>3.26.2</string>
<key>CFBundleVersion</key>
<string>3</string>
<key>NSExtension</key>
Expand Down

0 comments on commit 0834290

Please sign in to comment.