Skip to content

Commit

Permalink
Merge pull request #1265 from WalletConnect/feature/cocoapods-fix
Browse files Browse the repository at this point in the history
[W3W] SessionPropose hotfix
  • Loading branch information
radeknovis authored Dec 23, 2023
2 parents 12dc74c + c05c0ed commit bcecbd5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ final class SessionProposalInteractor {

let supportedRequiredChains = proposal.requiredNamespaces["eip155"]?.chains
let supportedOptionalChains = proposal.optionalNamespaces?["eip155"]?.chains ?? []
let supportedChains = supportedRequiredChains?.union(supportedOptionalChains) ?? []
let supportedChains = (supportedRequiredChains ?? []).union(supportedOptionalChains) ?? []

let supportedAccounts = Array(supportedChains).map { Account(blockchain: $0, address: account.address)! }

Expand Down
1 change: 0 additions & 1 deletion Sources/Web3Wallet/Web3WalletDecryptionService.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Foundation
import WalletConnectSign

public final class Web3WalletDecryptionService {
enum Errors: Error {
Expand Down

0 comments on commit bcecbd5

Please sign in to comment.