We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the following function
@spec call(atom(), atom(), list()) :: {:ok, any()} @doc "Use a Contract's method with an eth_call" def call(contract_name, method_name, args \\ []) do GenServer.call(ContractManager, {:call, {contract_name, method_name, args}}) end
the GenServer request times out quite a few times while accessing data on the mainnet (because the default timeout is 5 seconds).
GenServer
The timeout of Ethereumex.HttpClient can be set to :infinity, but the request times out at exw3.
Ethereumex.HttpClient
:infinity
exw3
Will it be helpful in allowing setting the GenServer timeout as a config value?
The text was updated successfully, but these errors were encountered:
As long as the config param is optional it sounds okay to me.
Sorry, something went wrong.
No branches or pull requests
In the following function
the
GenServer
request times out quite a few times while accessing data on the mainnet (because the default timeout is 5 seconds).The timeout of
Ethereumex.HttpClient
can be set to:infinity
, but the request times out atexw3
.Will it be helpful in allowing setting the GenServer timeout as a config value?
The text was updated successfully, but these errors were encountered: