[#8249] "" when grant access to ens dapp shown, it prevents the name to be registered

Signed-off-by: yenda <eric@status.im>
This commit is contained in:
Andrey Shovkoplyas 2019-05-21 16:58:06 +02:00 committed by yenda
parent 373291bfc0
commit df2a9a0297
No known key found for this signature in database
GPG Key ID: 0095623C0069DCE6
1 changed files with 3 additions and 3 deletions

View File

@ -162,11 +162,11 @@
(let [base32hash (-> (.encode js-dependencies/hi-base32 (alphabase.base58/decode hash))
(string/replace #"=" "")
(string/lower-case))]
(str "https://" base32hash ".infura.status.im")))
(str base32hash ".infura.status.im")))
(defmethod storage-gateway :swarm
[{:keys [hash]}]
(str "https://swarm-gateways.net/bzz:/" hash))
(str "swarm-gateways.net/bzz:/" hash))
(fx/defn resolve-ens-multihash-success
[{:keys [db] :as cofx} m]
@ -177,7 +177,7 @@
(fx/merge cofx
{:db (-> (update db :browser/options
assoc
:url (str gateway path)
:url (str "https://" gateway path)
:resolving? false)
(assoc-in [:browser/options :resolved-ens host] gateway))})))