@@ -84,50 +84,40 @@ func getFinalizedBlockNumber(eth *Ethereum) (uint64, error) {
84
84
85
85
// GetBlockReceipts returns all transaction receipts of the specified block.
86
86
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
+ }
91
91
92
- blockNumber := block .Header ().Number
93
- receipts := api .eth .blockchain .GetReceiptsByHash (blockHash )
92
+ blockNumber := block .Header ().Number
93
+ receipts := api .eth .blockchain .GetReceiptsByHash (blockHash )
94
94
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
+ }
98
98
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
+ }
103
103
104
- txReceipts := make ([]map [string ]interface {}, 0 , len (txs ))
104
+ txReceipts := make ([]map [string ]interface {}, 0 , len (txs ))
105
105
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 )
111
110
112
- if err != nil {
113
- return nil , err
114
- }
111
+ txReceipts = append (txReceipts , fields )
112
+ }
115
113
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 ))
118
118
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
+ }
131
121
132
- return txReceipts , nil
122
+ return txReceipts , nil
133
123
}
0 commit comments