@@ -163,16 +163,18 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer) =
163
163
164
164
proc getLogsForBlock (
165
165
chain: ForkedChainRef ,
166
- blk: Block ,
166
+ header: Header ,
167
167
opts: FilterOptions ): seq [FilterLog ]
168
168
{.gcsafe , raises : [RlpError ].} =
169
- if headerBloomFilter (blk.header, opts.address, opts.topics):
170
- let receipts = chain.db.getReceipts (blk.header.receiptsRoot)
169
+ if headerBloomFilter (header, opts.address, opts.topics):
170
+ let
171
+ receipts = chain.db.getReceipts (header.receiptsRoot)
172
+ txs = chain.db.getTransactions (header.txRoot)
171
173
# Note: this will hit assertion error if number of block transactions
172
174
# do not match block receipts.
173
175
# Although this is fine as number of receipts should always match number
174
176
# of transactions
175
- let logs = deriveLogs (blk. header, blk.transactions , receipts)
177
+ let logs = deriveLogs (header, txs , receipts)
176
178
let filteredLogs = filterLogs (logs, opts.address, opts.topics)
177
179
return filteredLogs
178
180
else :
@@ -190,9 +192,9 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer) =
190
192
191
193
while blockNum <= finish:
192
194
let
193
- blk = chain.blockByNumber (blockNum).valueOr:
195
+ header = chain.headerByNumber (blockNum).valueOr:
194
196
return logs
195
- filtered = chain.getLogsForBlock (blk , opts)
197
+ filtered = chain.getLogsForBlock (header , opts)
196
198
logs.add (filtered)
197
199
blockNum = blockNum + 1
198
200
return logs
@@ -210,9 +212,9 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer) =
210
212
if filterOptions.blockHash.isSome ():
211
213
let
212
214
hash = filterOptions.blockHash.expect (" blockHash" )
213
- blk = api.chain.blockByHash (hash).valueOr:
215
+ header = api.chain.headerByHash (hash).valueOr:
214
216
raise newException (ValueError , " Block not found" )
215
- return getLogsForBlock (api.chain, blk , filterOptions)
217
+ return getLogsForBlock (api.chain, header , filterOptions)
216
218
else :
217
219
# TODO : do something smarter with tags. It would be the best if
218
220
# tag would be an enum (Earliest, Latest, Pending, Number), and all operations
@@ -269,8 +271,8 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer) =
269
271
var
270
272
idx = 0 'u64
271
273
prevGasUsed = GasInt (0 )
272
-
273
- let
274
+
275
+ let
274
276
txHash = data
275
277
(blockhash, txid) = api.chain.txRecords (txHash)
276
278
@@ -295,7 +297,7 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer) =
295
297
else :
296
298
# Receipt in memory
297
299
let blkdesc = api.chain.memoryBlock (blockhash)
298
-
300
+
299
301
while idx <= txid:
300
302
let receipt = blkdesc.receipts[idx]
301
303
let gasUsed = receipt.cumulativeGasUsed - prevGasUsed
@@ -305,7 +307,7 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer) =
305
307
return populateReceipt (receipt, gasUsed, blkdesc.blk.transactions[txid], txid, blkdesc.blk.header)
306
308
307
309
idx.inc
308
-
310
+
309
311
server.rpc (" eth_estimateGas" ) do (args: TransactionArgs ) -> Web3Quantity :
310
312
# # Generates and returns an estimate of how much gas is necessary to allow the transaction to complete.
311
313
# # The transaction will not be added to the blockchain. Note that the estimate may be significantly more than
0 commit comments