Skip to content

Commit e731c74

Browse files
ianmark
ian
authored and
mark
committed
eth: modify GetBlockReceipts to identical too GetTransactionReceipt
1 parent fe8eb33 commit e731c74

File tree

2 files changed

+28
-6
lines changed

2 files changed

+28
-6
lines changed

eth/api.go

+20-2
Original file line numberDiff line numberDiff line change
@@ -560,9 +560,27 @@ func (api *PrivateDebugAPI) getModifiedAccounts(startBlock, endBlock *types.Bloc
560560
}
561561

562562
// GetBlockReceipts returns all transaction receipts of the specified block.
563-
func (api *PrivateDebugAPI) GetBlockReceipts(blockHash common.Hash) (types.Receipts, error) {
563+
func (api *PrivateDebugAPI) GetBlockReceipts(ctx context.Context, blockHash common.Hash) ([]map[string]interface{}, error) {
564564
if receipts := api.eth.blockchain.GetReceiptsByHash(blockHash); receipts != nil {
565-
return receipts, nil
565+
if block := api.eth.blockchain.GetBlockByHash(blockHash); block != nil {
566+
txs := block.Transactions()
567+
if len(txs) != len(receipts) {
568+
return nil, fmt.Errorf("txs length doesn't equal to receipts' length")
569+
}
570+
571+
txReceipts := make([]map[string]interface{}, 0, len(txs))
572+
blockNumber := block.Header().Number
573+
for idx, receipt := range receipts {
574+
tx := txs[idx]
575+
fields, err := ethapi.ToTransactionReceipt(ctx, api.eth.APIBackend, tx, receipt, blockHash, tx.Hash(), blockNumber.Uint64(), uint64(idx))
576+
if err != nil {
577+
return nil, err
578+
}
579+
txReceipts = append(txReceipts, fields)
580+
}
581+
582+
return txReceipts, nil
583+
}
566584
}
567585
return nil, errors.New("unknown receipts")
568586
}

internal/ethapi/api.go

+8-4
Original file line numberDiff line numberDiff line change
@@ -1609,9 +1609,13 @@ func (s *PublicTransactionPoolAPI) GetTransactionReceipt(ctx context.Context, ha
16091609
}
16101610
receipt := receipts[index]
16111611

1612-
// Derive the sender.
1612+
return ToTransactionReceipt(ctx, s.b, tx, receipt, blockHash, hash, blockNumber, index)
1613+
}
1614+
1615+
func ToTransactionReceipt(ctx context.Context, b Backend, tx *types.Transaction, receipt *types.Receipt, blockHash common.Hash, hash common.Hash, blockNumber uint64, index uint64) (map[string]interface{}, error) {
1616+
chainConfig := b.ChainConfig()
16131617
bigblock := new(big.Int).SetUint64(blockNumber)
1614-
signer := types.MakeSigner(s.b.ChainConfig(), bigblock)
1618+
signer := types.MakeSigner(chainConfig, bigblock)
16151619
from, _ := types.Sender(signer, tx)
16161620

16171621
fields := map[string]interface{}{
@@ -1629,10 +1633,10 @@ func (s *PublicTransactionPoolAPI) GetTransactionReceipt(ctx context.Context, ha
16291633
"type": hexutil.Uint(tx.Type()),
16301634
}
16311635
// Assign the effective gas price paid
1632-
if !s.b.ChainConfig().IsLondon(bigblock) {
1636+
if !chainConfig.IsLondon(bigblock) {
16331637
fields["effectiveGasPrice"] = hexutil.Uint64(tx.GasPrice().Uint64())
16341638
} else {
1635-
header, err := s.b.HeaderByHash(ctx, blockHash)
1639+
header, err := b.HeaderByHash(ctx, blockHash)
16361640
if err != nil {
16371641
return nil, err
16381642
}

0 commit comments

Comments
 (0)