Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion yarn-project/txe/src/node/txe_node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,8 @@ export class TXENode implements AztecNode {
// hold a reference to them.
// We should likely migrate this so that the trees are owned by the node.

if (blockNumber == 'latest') {
// TODO: blockNumber is being passed as undefined, figure out why

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All the TODOs always should a linked issue.

if (blockNumber === 'latest' || blockNumber === undefined) {
blockNumber = await this.getBlockNumber();
}

Expand Down