-
Notifications
You must be signed in to change notification settings - Fork 680
feat: get logs from a fork network directly #3692
base: develop
Are you sure you want to change the base?
Conversation
This looks like it's not quiet ready for review as you've introduced some new |
Ok, I will remove the TODOs, they are related to some bugs in the block-manager.ts and can be fixed in other PRs. |
@@ -31,46 +32,80 @@ export default class BlockLogManager extends Manager<BlockLogs> { | |||
async getLogs(filter: FilterArgs): Promise<Ethereum.Logs> { | |||
const blockchain = this.#blockchain; | |||
if ("blockHash" in filter) { | |||
// TODO: revert back to getNumberFromHash (when they add support for fallback/forks) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This depends on a fix on block-manager.
pendingLogsPromises.push(this.get(Quantity.toBuffer(i))); | ||
} | ||
} | ||
// TODO: Use block-manager earliest when fixed (currently it doesn't support fallback/fork correctly) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This depends on a fix on block-manager.
@@ -31,46 +32,80 @@ export default class BlockLogManager extends Manager<BlockLogs> { | |||
async getLogs(filter: FilterArgs): Promise<Ethereum.Logs> { | |||
const blockchain = this.#blockchain; | |||
if ("blockHash" in filter) { | |||
// TODO: revert back to getNumberFromHash (when they add support for fallback/forks) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This depends on a fix on block-manager.
What are the bugs? |
getNumberFromHash is called from api.eth_getBlockTransactionCountByHash but it doesn't support forks, so I used getByHash. |
No description provided.