Browse Source

Start crypto in app startup

Seth Falcon 14 years ago
parent
commit
4804b3ed87
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/pooler_app.erl

+ 1 - 0
src/pooler_app.erl

@@ -10,6 +10,7 @@
 %% ===================================================================
 
 start(_StartType, _StartArgs) ->
+    application:start(crypto),
     case pooler_sup:start_link() of
         {ok, Pid} -> {ok, Pid};
         Other -> {error, Other}