Skip to content

Commit

Permalink
fix auth package issue
Browse files Browse the repository at this point in the history
  • Loading branch information
llbartekll committed Aug 13, 2024
1 parent 4d8f292 commit ee030b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/Auth/Services/Wallet/WalletRequestSubscriber.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class WalletRequestSubscriber {
verifyContextStore.set(verifyContext, forKey: request.id.string)
onRequest?((request, verifyContext))
} catch {
let verifyContext = verifyClient.createVerifyContext(origin: nil, domain: payload.request.payloadParams.domain, isScam: nil)
let verifyContext = verifyClient.createVerifyContext(origin: nil, domain: payload.request.payloadParams.domain, isScam: nil, isVerified: nil)
verifyContextStore.set(verifyContext, forKey: request.id.string)
onRequest?((request, verifyContext))
return
Expand Down
2 changes: 1 addition & 1 deletion Sources/WalletConnectSign/Services/HistoryService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ final class MockHistoryService: HistoryServiceProtocol {
removePendingRequestCalled(topic)
}

func getSessionRequest(id: JSONRPC.RPCID) -> (request: Request, context: VerifyContext?)? {
func getSessionRequest(id: RPCID) -> (request: Request, context: VerifyContext?)? {
fatalError("Unimplemented")
}

Expand Down

0 comments on commit ee030b5

Please sign in to comment.