From 1d65097c54f414dc53d7f1f19de58fdb7710ac57 Mon Sep 17 00:00:00 2001 From: Craig Everett Date: Wed, 13 Nov 2024 13:21:58 +0900 Subject: [PATCH] Remove tells --- src/gmc_v_wallman.erl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/gmc_v_wallman.erl b/src/gmc_v_wallman.erl index 0934ba3..a5e1272 100644 --- a/src/gmc_v_wallman.erl +++ b/src/gmc_v_wallman.erl @@ -245,7 +245,6 @@ do_open3(Path, State = #s{frame = Frame, j = J}) -> do_new(State = #s{frame = Frame, j = J, prefs = Prefs}) -> - tell("new_wallet ~p/~p ~p", [?FUNCTION_NAME, ?FUNCTION_ARITY, ?LINE]), DefaultDir = maps:get(dir, Prefs, zx_lib:path(var, "otpr", "clutch")), Options = [{message, J("Save Location")}, @@ -273,7 +272,6 @@ do_new(State = #s{frame = Frame, j = J, prefs = Prefs}) -> end. do_new2(Path, J, Frame) -> - tell("new_wallet ~p/~p ~p", [?FUNCTION_NAME, ?FUNCTION_ARITY, ?LINE]), Dialog = wxDialog:new(Frame, ?wxID_ANY, J("Set Node"), [{size, {400, 250}}]), Sizer = wxBoxSizer:new(?wxVERTICAL), @@ -308,7 +306,6 @@ do_new2(Path, J, Frame) -> Result = case wxDialog:showModal(Dialog) of ?wxID_OK -> - tell("new_wallet ~p/~p ~p", [?FUNCTION_NAME, ?FUNCTION_ARITY, ?LINE]), Name = case wxTextCtrl:getValue(NameTx) of "" -> Path; @@ -328,10 +325,8 @@ do_new2(Path, J, Frame) -> Result. do_new3(_, _, bad) -> - tell("new_wallet ~p/~p ~p", [?FUNCTION_NAME, ?FUNCTION_ARITY, ?LINE]), abort; do_new3(Name, Path, Pass) -> - tell("new_wallet ~p/~p ~p", [?FUNCTION_NAME, ?FUNCTION_ARITY, ?LINE]), gmc_con:new_wallet(Name, Path, Pass).