Skip to content

Commit cacd4b6

Browse files
committed
drop Settings.get_featured_transactions
1 parent 35a333c commit cacd4b6

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

lib/algora/settings/settings.ex

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,13 @@ defmodule Algora.Settings do
205205
set("blocked_users", %{"handles" => handles})
206206
end
207207

208-
def get_featured_transactions do
209-
case get("featured_transactions") do
210-
%{"ids" => ids} when is_list(ids) -> nil
211-
_ -> nil
212-
end
213-
end
208+
def get_featured_transactions, do: nil
209+
# def get_featured_transactions do
210+
# case get("featured_transactions") do
211+
# %{"ids" => ids} when is_list(ids) -> nil
212+
# _ -> nil
213+
# end
214+
# end
214215

215216
def set_featured_transactions(ids) when is_list(ids) do
216217
set("featured_transactions", %{"ids" => ids})

0 commit comments

Comments
 (0)