Skip to content

Commit a71aa10

Browse files
committed
Remove __MODULE__ from Ethers.send_transaction!/2
1 parent ef14fc8 commit a71aa10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ethers.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ defmodule Ethers do
426426
"""
427427
@spec send_transaction!(map() | TxData.t(), Keyword.t()) :: String.t() | no_return()
428428
def send_transaction!(tx_data, overrides \\ []) do
429-
case __MODULE__.send_transaction(tx_data, overrides) do
429+
case send_transaction(tx_data, overrides) do
430430
{:ok, tx_hash} -> tx_hash
431431
{:error, reason} -> raise ExecutionError, reason
432432
end

0 commit comments

Comments
 (0)