Skip to content

Commit

Permalink
Merge pull request #1050 from WalletConnect/llbartekll-patch-1
Browse files Browse the repository at this point in the history
Update NotifyMessageProtocolMethod.swift
  • Loading branch information
flypaper0 authored Aug 24, 2023
2 parents b34cace + 0383daf commit eb482ed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ struct NotifyMessageProtocolMethod: ProtocolMethod {

let requestConfig: RelayConfig = RelayConfig(tag: 4002, prompt: true, ttl: 2592000)

let responseConfig: RelayConfig = RelayConfig(tag: 4003, prompt: true, ttl: 2592000)
let responseConfig: RelayConfig = RelayConfig(tag: 4003, prompt: false, ttl: 2592000)
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Foundation
struct NotifySubscribeProtocolMethod: ProtocolMethod {
let method: String = "wc_notifySubscribe"

let requestConfig: RelayConfig = RelayConfig(tag: 4000, prompt: true, ttl: 86400)
let requestConfig: RelayConfig = RelayConfig(tag: 4000, prompt: false, ttl: 86400)

let responseConfig: RelayConfig = RelayConfig(tag: 4001, prompt: true, ttl: 86400)
let responseConfig: RelayConfig = RelayConfig(tag: 4001, prompt: false, ttl: 86400)
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import Foundation
struct NotifyUpdateProtocolMethod: ProtocolMethod {
let method: String = "wc_notifyUpdate"

let requestConfig: RelayConfig = RelayConfig(tag: 4008, prompt: true, ttl: 86400)
let requestConfig: RelayConfig = RelayConfig(tag: 4008, prompt: false, ttl: 86400)

let responseConfig: RelayConfig = RelayConfig(tag: 4009, prompt: true, ttl: 86400)
let responseConfig: RelayConfig = RelayConfig(tag: 4009, prompt: false, ttl: 86400)
}

0 comments on commit eb482ed

Please sign in to comment.