-
Notifications
You must be signed in to change notification settings - Fork 0
Enable circleCI after rebase14 #265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
821e0eb
72935ba
95bc030
1b07a10
8f9366c
cfbc108
63c6ad0
3ca19b7
1b41302
c16ad6b
8adfbcb
2a2ee28
5915eea
8e770eb
05bf293
ecee731
19adecb
942459f
1d4ee80
d37f77d
99c0b55
a4056a2
468f6e6
9963cf7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,6 +46,11 @@ func (o *OracleL1Client) L1BlockRefByLabel(ctx context.Context, label eth.BlockL | |
| return o.head, nil | ||
| } | ||
|
|
||
| func (o *OracleL1Client) L1FinalizedBlock() (eth.L1BlockRef, error) { | ||
| // The L1 head is pre-agreed and unchanging so it can be used as finalized | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this function used anywhere?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, it's part of the |
||
| return o.head, nil | ||
| } | ||
|
|
||
| func (o *OracleL1Client) L1BlockRefByNumber(ctx context.Context, number uint64) (eth.L1BlockRef, error) { | ||
| if number > o.head.Number { | ||
| return eth.L1BlockRef{}, fmt.Errorf("%w: block number %d", ErrNotFound, number) | ||
|
|
||
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.
Nit: could you add
TODObefore the Asana links since we might search for TODO in the future?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.
Updated in 9963cf7.