From cb13859ffff3094ea219e05ca7ab578fb5455bad Mon Sep 17 00:00:00 2001 From: lightclient Date: Mon, 17 Jul 2023 17:22:09 -0600 Subject: [PATCH] eth: remove methods to retrieve uncle counts --- src/eth/block.yaml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/eth/block.yaml b/src/eth/block.yaml index c1c954cdf..b2bb28a43 100644 --- a/src/eth/block.yaml +++ b/src/eth/block.yaml @@ -50,23 +50,3 @@ name: Transaction count schema: $ref: '#/components/schemas/uint' -- name: eth_getUncleCountByBlockHash - summary: Returns the number of uncles in a block from a block matching the given block hash. - params: - - name: Block hash - schema: - $ref: '#/components/schemas/hash32' - result: - name: Uncle count - schema: - $ref: '#/components/schemas/uint' -- name: eth_getUncleCountByBlockNumber - summary: Returns the number of transactions in a block matching the given block number. - params: - - name: Block - schema: - $ref: '#/components/schemas/BlockNumberOrTag' - result: - name: Uncle count - schema: - $ref: '#/components/schemas/uint'