Skip to content

Commit 6ecd0b3

Browse files
author
ian
committed
eth: modify ToTransactionReceipt to MarshalReceipt
1 parent 3496ec4 commit 6ecd0b3

File tree

1 file changed

+27
-37
lines changed

1 file changed

+27
-37
lines changed

eth/api.go

+27-37
Original file line numberDiff line numberDiff line change
@@ -84,50 +84,40 @@ func getFinalizedBlockNumber(eth *Ethereum) (uint64, error) {
8484

8585
// GetBlockReceipts returns all transaction receipts of the specified block.
8686
func (api *DebugAPI) GetBlockReceipts(ctx context.Context, blockHash common.Hash) ([]map[string]interface{}, error) {
87-
block := api.eth.blockchain.GetBlockByHash(blockHash)
88-
if block == nil {
89-
return nil, errors.New("block not found")
90-
}
87+
block := api.eth.blockchain.GetBlockByHash(blockHash)
88+
if block == nil {
89+
return nil, errors.New("block not found")
90+
}
9191

92-
blockNumber := block.Header().Number
93-
receipts := api.eth.blockchain.GetReceiptsByHash(blockHash)
92+
blockNumber := block.Header().Number
93+
receipts := api.eth.blockchain.GetReceiptsByHash(blockHash)
9494

95-
if receipts == nil {
96-
return nil, errors.New("receipts not found")
97-
}
95+
if receipts == nil {
96+
return nil, errors.New("receipts not found")
97+
}
9898

99-
txs := block.Transactions()
100-
if len(txs) != len(receipts) {
101-
return nil, fmt.Errorf("txs length doesn't equal to receipts' length")
102-
}
99+
txs := block.Transactions()
100+
if len(txs) != len(receipts) {
101+
return nil, fmt.Errorf("txs length doesn't equal to receipts' length")
102+
}
103103

104-
txReceipts := make([]map[string]interface{}, 0, len(txs))
104+
txReceipts := make([]map[string]interface{}, 0, len(txs))
105105

106-
signer := types.MakeSigner(api.eth.APIBackend.ChainConfig(), blockNumber, block.Header().Time)
107-
for idx, receipt := range receipts {
108-
tx := txs[idx]
109-
from, _ := types.Sender(signer, tx)
110-
fields, err := ethapi.ToTransactionReceipt(ctx, api.eth.APIBackend, tx, from, receipt, blockHash, tx.Hash(), blockNumber.Uint64(), uint64(idx))
106+
signer := types.MakeSigner(api.eth.APIBackend.ChainConfig(), blockNumber, block.Header().Time)
107+
for idx, receipt := range receipts {
108+
tx := txs[idx]
109+
fields := ethapi.MarshalReceipt(receipt, blockHash, blockNumber.Uint64(), signer, tx, idx)
111110

112-
if err != nil {
113-
return nil, err
114-
}
111+
txReceipts = append(txReceipts, fields)
112+
}
115113

116-
txReceipts = append(txReceipts, fields)
117-
}
114+
receipt := rawdb.ReadBorReceipt(api.eth.chainDb, blockHash, blockNumber.Uint64(), api.eth.blockchain.Config())
115+
if receipt != nil {
116+
tx, _, _, _ := rawdb.ReadBorTransaction(api.eth.chainDb, receipt.TxHash)
117+
fields := ethapi.MarshalReceipt(receipt, blockHash, blockNumber.Uint64(), signer, tx, int(receipt.TransactionIndex))
118118

119-
receipt := rawdb.ReadBorReceipt(api.eth.chainDb, blockHash, blockNumber.Uint64(), api.eth.blockchain.Config())
120-
if receipt != nil {
121-
tx, _, _, _ := rawdb.ReadBorTransaction(api.eth.chainDb, receipt.TxHash)
122-
from, _ := types.Sender(signer, tx)
123-
fields, err := ethapi.ToTransactionReceipt(ctx, api.eth.APIBackend, tx, from, receipt, blockHash, receipt.TxHash, blockNumber.Uint64(), uint64(receipt.TransactionIndex))
124-
125-
if err != nil {
126-
return nil, err
127-
}
128-
129-
txReceipts = append(txReceipts, fields)
130-
}
119+
txReceipts = append(txReceipts, fields)
120+
}
131121

132-
return txReceipts, nil
122+
return txReceipts, nil
133123
}

0 commit comments

Comments
 (0)