From c496e5f43a977e9b243c3b419573a12ddd053008 Mon Sep 17 00:00:00 2001 From: Luke Imhoff Date: Mon, 14 May 2018 14:42:17 -0500 Subject: [PATCH] Remove double backticks not flagged by earmark --- .../lib/ethereum_jsonrpc/block.ex | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/ethereum_jsonrpc/lib/ethereum_jsonrpc/block.ex b/apps/ethereum_jsonrpc/lib/ethereum_jsonrpc/block.ex index 1fc387cbf1..d7517279b0 100644 --- a/apps/ethereum_jsonrpc/lib/ethereum_jsonrpc/block.ex +++ b/apps/ethereum_jsonrpc/lib/ethereum_jsonrpc/block.ex @@ -13,12 +13,12 @@ defmodule EthereumJSONRPC.Block do @typedoc """ * `"author"` - `t:EthereumJSONRPC.address/0` that created the block. Aliased by `"miner"`. - * `"difficulty"` - `t:EthereumJSONRPC.quantity/0`` of the difficulty for this block. - * `"extraData"` - the extra `t:EthereumJSONRPC.data/0`` field of this block. - * `"gasLimit" - maximum gas `t:EthereumJSONRPC.quantity/0`` in this block. - * `"gasUsed" - the total `t:EthereumJSONRPC.quantity/0`` of gas used by all transactions in this block. + * `"difficulty"` - `t:EthereumJSONRPC.quantity/0` of the difficulty for this block. + * `"extraData"` - the extra `t:EthereumJSONRPC.data/0` field of this block. + * `"gasLimit" - maximum gas `t:EthereumJSONRPC.quantity/0` in this block. + * `"gasUsed" - the total `t:EthereumJSONRPC.quantity/0` of gas used by all transactions in this block. * `"hash"` - the `t:EthereumJSONRPC.hash/0` of the block. - * `"logsBloom"` - `t:EthereumJSONRPC.data/0`` for the [Bloom filter](https://en.wikipedia.org/wiki/Bloom_filter) + * `"logsBloom"` - `t:EthereumJSONRPC.data/0` for the [Bloom filter](https://en.wikipedia.org/wiki/Bloom_filter) for the logs of the block. `nil` when block is pending. * `"miner"` - `t:EthereumJSONRPC.address/0` of the beneficiary to whom the mining rewards were given. Aliased by `"author"`. @@ -31,12 +31,12 @@ defmodule EthereumJSONRPC.Block do * `"sha3Uncles"` - `t:EthereumJSONRPC.hash/0` of the [uncles](https://bitcoin.stackexchange.com/questions/39329/in-ethereum-what-is-an-uncle-block) data in the block. * `"signature"` - UNKNOWN - * `"size"` - `t:EthereumJSONRPC.quantity/0`` of bytes in this block + * `"size"` - `t:EthereumJSONRPC.quantity/0` of bytes in this block * `"stateRoot" - `t:EthereumJSONRPC.hash/0` of the root of the final state [trie](https://github.com/ethereum/wiki/wiki/Patricia-Tree) of the block. * `"step"` - UNKNOWN - * `"timestamp"`: the unix timestamp as a `t:EthereumJSONRPC.quantity/0`` for when the block was collated. - * `"totalDifficulty" - `t:EthereumJSONRPC.quantity/0`` of the total difficulty of the chain until this block. + * `"timestamp"`: the unix timestamp as a `t:EthereumJSONRPC.quantity/0` for when the block was collated. + * `"totalDifficulty" - `t:EthereumJSONRPC.quantity/0` of the total difficulty of the chain until this block. * `"transactions"` - `t:list/0` of `t:EthereumJSONRPC.Transaction.t/0`. * `"transactionsRoot" - `t:EthereumJSONRPC.hash/0` of the root of the transaction [trie](https://github.com/ethereum/wiki/wiki/Patricia-Tree) of the block.