[#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:
parent
373291bfc0
commit
df2a9a0297
|
@ -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))})))
|
||||
|
||||
|
|
Loading…
Reference in New Issue