commit 60260ae53bd052875ce6eb13604cfba04cff84fa
parent 1fff0abce5ce3bc05f103c1f2f8aaadfea24a3be
Author: William Casarin <jb55@jb55.com>
Date: Sun, 14 May 2023 11:11:27 -0700
nwc: make delay 5 seconds instead of 3
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/damus/Util/WalletConnect.swift b/damus/Util/WalletConnect.swift
@@ -190,7 +190,7 @@ func nwc_pay(url: WalletConnectURL, pool: RelayPool, post: PostBox, invoice: Str
try? pool.add_relay(.nwc(url: url.relay))
subscribe_to_nwc(url: url, pool: pool)
- post.send(ev, to: [url.relay.id], skip_ephemeral: false, delay: 3.0)
+ post.send(ev, to: [url.relay.id], skip_ephemeral: false, delay: 5.0)
return ev
}