2020-10-12 14:17:34 +00:00
package commands
2020-10-14 15:59:42 +00:00
import (
"context"
"fmt"
2020-10-12 14:17:34 +00:00
2020-10-14 15:59:42 +00:00
"github.com/ledgerwatch/turbo-geth/common"
"github.com/ledgerwatch/turbo-geth/common/hexutil"
"github.com/ledgerwatch/turbo-geth/core/rawdb"
"github.com/ledgerwatch/turbo-geth/rpc"
)
2020-10-24 17:03:52 +00:00
// GetTransactionByHash implements eth_getTransactionByHash. Returns information about a transaction given the transaction's hash.
2020-10-14 15:59:42 +00:00
func ( api * APIImpl ) GetTransactionByHash ( ctx context . Context , hash common . Hash ) ( * RPCTransaction , error ) {
2020-10-24 06:55:43 +00:00
tx , err := api . dbReader . Begin ( ctx , false )
2020-10-14 15:59:42 +00:00
if err != nil {
return nil , err
}
defer tx . Rollback ( )
// https://infura.io/docs/ethereum/json-rpc/eth-getTransactionByHash
txn , blockHash , blockNumber , txIndex := rawdb . ReadTransaction ( tx , hash )
if txn == nil {
return nil , fmt . Errorf ( "transaction %#x not found" , hash )
}
return newRPCTransaction ( txn , blockHash , blockNumber , txIndex ) , nil
}
2020-10-24 17:03:52 +00:00
// GetTransactionByBlockHashAndIndex implements eth_getTransactionByBlockHashAndIndex. Returns information about a transaction given the block's hash and a transaction index.
2020-10-14 15:59:42 +00:00
func ( api * APIImpl ) GetTransactionByBlockHashAndIndex ( ctx context . Context , blockHash common . Hash , txIndex hexutil . Uint64 ) ( * RPCTransaction , error ) {
2020-10-24 06:55:43 +00:00
tx , err := api . dbReader . Begin ( ctx , false )
2020-10-14 15:59:42 +00:00
if err != nil {
return nil , err
}
defer tx . Rollback ( )
// https://infura.io/docs/ethereum/json-rpc/eth-getTransactionByBlockHashAndIndex
2020-10-24 06:57:09 +00:00
block , err := rawdb . ReadBlockByHash ( tx , blockHash )
if err != nil {
return nil , err
}
2020-10-14 15:59:42 +00:00
if block == nil {
return nil , fmt . Errorf ( "block %#x not found" , blockHash )
}
txs := block . Transactions ( )
if uint64 ( txIndex ) >= uint64 ( len ( txs ) ) {
return nil , fmt . Errorf ( "txIndex (%d) out of range (nTxs: %d)" , uint64 ( txIndex ) , uint64 ( len ( txs ) ) )
}
return newRPCTransaction ( txs [ txIndex ] , block . Hash ( ) , block . NumberU64 ( ) , uint64 ( txIndex ) ) , nil
}
2020-10-24 17:03:52 +00:00
// GetTransactionByBlockNumberAndIndex implements eth_getTransactionByBlockNumberAndIndex. Returns information about a transaction given a block number and transaction index.
2020-10-14 15:59:42 +00:00
func ( api * APIImpl ) GetTransactionByBlockNumberAndIndex ( ctx context . Context , blockNr rpc . BlockNumber , txIndex hexutil . Uint ) ( * RPCTransaction , error ) {
2020-10-24 06:55:43 +00:00
tx , err := api . dbReader . Begin ( ctx , false )
2020-10-14 15:59:42 +00:00
if err != nil {
return nil , err
}
defer tx . Rollback ( )
// https://infura.io/docs/ethereum/json-rpc/eth-getTransactionByBlockNumberAndIndex
blockNum , err := getBlockNumber ( blockNr , tx )
if err != nil {
return nil , err
}
2020-10-24 06:57:09 +00:00
block , err := rawdb . ReadBlockByNumber ( tx , blockNum )
if err != nil {
return nil , err
}
2020-10-14 15:59:42 +00:00
if block == nil {
return nil , fmt . Errorf ( "block %d not found" , blockNum )
}
txs := block . Transactions ( )
if uint64 ( txIndex ) >= uint64 ( len ( txs ) ) {
return nil , fmt . Errorf ( "txIndex (%d) out of range (nTxs: %d)" , uint64 ( txIndex ) , uint64 ( len ( txs ) ) )
}
return newRPCTransaction ( txs [ txIndex ] , block . Hash ( ) , block . NumberU64 ( ) , uint64 ( txIndex ) ) , nil
}