Skip to content

Commit

Permalink
fix cannot add existing ENS owned by user (#18567)
Browse files Browse the repository at this point in the history
  • Loading branch information
Parveshdhull authored and ulisesmac committed Jan 24, 2024
1 parent beb5ae4 commit d525210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/legacy/status_im/ens/core.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
[db]
(into #{}
(remove #(= (:type %) :watch)
(map #(eip55/address->checksum (:address %)) (get db :profile/wallet-accounts)))))
(map #(eip55/address->checksum (:address %)) (vals (get-in db [:wallet :accounts]))))))

;;NOTE we want to handle only last resolve
(def resolve-last-id (atom nil))
Expand Down

0 comments on commit d525210

Please sign in to comment.