Skip to content

Commit fc5ea1c

Browse files
authored
avoid loading full block for logs (#2772)
the block body is not needed until a match and parts of the block body are not needed at all.
1 parent 2c612d4 commit fc5ea1c

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

nimbus/rpc/server_api.nim

+14-12
Original file line numberDiff line numberDiff line change
@@ -163,16 +163,18 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer) =
163163

164164
proc getLogsForBlock(
165165
chain: ForkedChainRef,
166-
blk: Block,
166+
header: Header,
167167
opts: FilterOptions): seq[FilterLog]
168168
{.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)
171173
# Note: this will hit assertion error if number of block transactions
172174
# do not match block receipts.
173175
# Although this is fine as number of receipts should always match number
174176
# of transactions
175-
let logs = deriveLogs(blk.header, blk.transactions, receipts)
177+
let logs = deriveLogs(header, txs, receipts)
176178
let filteredLogs = filterLogs(logs, opts.address, opts.topics)
177179
return filteredLogs
178180
else:
@@ -190,9 +192,9 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer) =
190192

191193
while blockNum <= finish:
192194
let
193-
blk = chain.blockByNumber(blockNum).valueOr:
195+
header = chain.headerByNumber(blockNum).valueOr:
194196
return logs
195-
filtered = chain.getLogsForBlock(blk, opts)
197+
filtered = chain.getLogsForBlock(header, opts)
196198
logs.add(filtered)
197199
blockNum = blockNum + 1
198200
return logs
@@ -210,9 +212,9 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer) =
210212
if filterOptions.blockHash.isSome():
211213
let
212214
hash = filterOptions.blockHash.expect("blockHash")
213-
blk = api.chain.blockByHash(hash).valueOr:
215+
header = api.chain.headerByHash(hash).valueOr:
214216
raise newException(ValueError, "Block not found")
215-
return getLogsForBlock(api.chain, blk, filterOptions)
217+
return getLogsForBlock(api.chain, header, filterOptions)
216218
else:
217219
# TODO: do something smarter with tags. It would be the best if
218220
# tag would be an enum (Earliest, Latest, Pending, Number), and all operations
@@ -269,8 +271,8 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer) =
269271
var
270272
idx = 0'u64
271273
prevGasUsed = GasInt(0)
272-
273-
let
274+
275+
let
274276
txHash = data
275277
(blockhash, txid) = api.chain.txRecords(txHash)
276278

@@ -295,7 +297,7 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer) =
295297
else:
296298
# Receipt in memory
297299
let blkdesc = api.chain.memoryBlock(blockhash)
298-
300+
299301
while idx <= txid:
300302
let receipt = blkdesc.receipts[idx]
301303
let gasUsed = receipt.cumulativeGasUsed - prevGasUsed
@@ -305,7 +307,7 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer) =
305307
return populateReceipt(receipt, gasUsed, blkdesc.blk.transactions[txid], txid, blkdesc.blk.header)
306308

307309
idx.inc
308-
310+
309311
server.rpc("eth_estimateGas") do(args: TransactionArgs) -> Web3Quantity:
310312
## Generates and returns an estimate of how much gas is necessary to allow the transaction to complete.
311313
## The transaction will not be added to the blockchain. Note that the estimate may be significantly more than

0 commit comments

Comments
 (0)