Fix spacing

pull/931/head
Konstantin Zolotarev 6 years ago
parent 0604f7a234
commit 3eee0a2944
  1. 10
      apps/ethereum_jsonrpc/lib/ethereum_jsonrpc/transaction.ex

@ -13,8 +13,8 @@ defmodule EthereumJSONRPC.Transaction do
alias EthereumJSONRPC alias EthereumJSONRPC
@type elixir :: %{ @type elixir :: %{
String.t() => EthereumJSONRPC.address() | EthereumJSONRPC.hash() | String.t() | non_neg_integer() | nil String.t() => EthereumJSONRPC.address() | EthereumJSONRPC.hash() | String.t() | non_neg_integer() | nil
} }
@typedoc """ @typedoc """
* `"blockHash"` - `t:EthereumJSONRPC.hash/0` of the block this transaction is in. `nil` when transaction is * `"blockHash"` - `t:EthereumJSONRPC.hash/0` of the block this transaction is in. `nil` when transaction is
@ -42,9 +42,9 @@ defmodule EthereumJSONRPC.Transaction do
* `"value"` - `t:EthereumJSONRPC.quantity/0` of wei transferred * `"value"` - `t:EthereumJSONRPC.quantity/0` of wei transferred
""" """
@type t :: %{ @type t :: %{
String.t() => String.t() =>
EthereumJSONRPC.address() | EthereumJSONRPC.hash() | EthereumJSONRPC.quantity() | String.t() | nil EthereumJSONRPC.address() | EthereumJSONRPC.hash() | EthereumJSONRPC.quantity() | String.t() | nil
} }
@type params :: %{ @type params :: %{
block_hash: EthereumJSONRPC.hash(), block_hash: EthereumJSONRPC.hash(),

Loading…
Cancel
Save