-
Notifications
You must be signed in to change notification settings - Fork 121
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
Publish block V1 flag fix #585
Conversation
USE_V1_PUBLISH_BLOCK_ENDPOINT was accidentally using the v2 publish endpoint when set instead of v1, and vice versa.
11a2ba2
to
78b0c1b
Compare
Codecov ReportAttention:
β Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #585 +/- ##
==========================================
- Coverage 36.22% 30.44% -5.79%
==========================================
Files 24 41 +17
Lines 5267 6268 +1001
==========================================
Hits 1908 1908
- Misses 3112 4113 +1001
Partials 247 247
Flags with carried forward coverage won't be shown. Click here to find out more. β View full report in Codecov by Sentry. |
7ae5cbc
to
0e75ea2
Compare
0e75ea2
to
f10ae18
Compare
for some reason the linter was panicking in #582, this includes a linter upgrade |
@@ -30,6 +30,7 @@ linters: | |||
- deadcode | |||
- varcheck | |||
- interfacebloat | |||
- exhaustruct |
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.
why disable this linter rule?
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.
it was causing too many linter issues as there are many paths that are not ignored. I will have a follow up to properly update the go version and linter
@@ -14,7 +14,7 @@ jobs: | |||
- name: Set up Go | |||
uses: actions/setup-go@v3 | |||
with: | |||
go-version: ^1.20 | |||
go-version: ^1.21 |
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.
could use go 1.22
@@ -1,6 +1,6 @@ | |||
module github.com/flashbots/mev-boost-relay | |||
|
|||
go 1.20 | |||
go 1.21 |
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.
could use go 1.22
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.
lgtm
π Summary
Same as #582 but with some linter fixes and comments addressed as for some reason the linter was panicking
β± Motivation and Context
See #581
π References
β I have run these commands
make lint
make test-race
go mod tidy
CONTRIBUTING.md