From 66b182a2210f05cbd2acf3e648a6b3f4462c8858 Mon Sep 17 00:00:00 2001 From: Rob Dawson Date: Thu, 20 Dec 2018 11:00:56 +1000 Subject: [PATCH] Deleted some obviously dead code. (#468) Signed-off-by: Adrian Sutton --- .../internal/queries/BlockchainQueries.java | 30 ------------------- 1 file changed, 30 deletions(-) diff --git a/ethereum/jsonrpc/src/main/java/tech/pegasys/pantheon/ethereum/jsonrpc/internal/queries/BlockchainQueries.java b/ethereum/jsonrpc/src/main/java/tech/pegasys/pantheon/ethereum/jsonrpc/internal/queries/BlockchainQueries.java index 9c2a0d22ac..1fcb9b8e45 100644 --- a/ethereum/jsonrpc/src/main/java/tech/pegasys/pantheon/ethereum/jsonrpc/internal/queries/BlockchainQueries.java +++ b/ethereum/jsonrpc/src/main/java/tech/pegasys/pantheon/ethereum/jsonrpc/internal/queries/BlockchainQueries.java @@ -97,17 +97,6 @@ public class BlockchainQueries { .orElse(UInt256.ZERO)); } - /** - * Returns the nonce of the given account at a specific block number. - * - * @param address The address of the account being queried. - * @param blockNumber The block number being queried. - * @return The nonce of the account. - */ - public UInt256 getAccountNonce(final Address address, final long blockNumber) { - throw new UnsupportedOperationException(); - } - /** * Returns the balance of the given account at a specific block number. * @@ -180,15 +169,6 @@ public class BlockchainQueries { .orElse(-1); } - /** - * Returns the number of transactions in the latest block. - * - * @return The number of transactions contained in the latest block. - */ - public Optional getTransactionCount() { - throw new UnsupportedOperationException(); - } - /** * Returns the number of transactions sent from the given address in the block at the given * height. @@ -469,16 +449,6 @@ public class BlockchainQueries { txs.get(txIndex), header.getNumber(), blockHeaderHash, txIndex); } - /** - * Returns the transaction at the given index for the latest block. - * - * @param txIndex The index of the transaction to return. - * @return The transaction at the specified location. - */ - public Optional transactionByIndex(final int txIndex) { - throw new UnsupportedOperationException(); - } - /** * Returns the transaction receipt associated with the given transaction hash. *