-
Notifications
You must be signed in to change notification settings - Fork 171
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
Remove epic verifier #2751
base: master
Are you sure you want to change the base?
Remove epic verifier #2751
Conversation
@@ -33,8 +33,10 @@ type Fatal struct { | |||
Retryable | |||
} | |||
|
|||
var ErrTampered = Retryable{errors.New("Tampered")} |
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's this being added?
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.
That error moved from epic verifier. Currently, local verification doesn't produce it, but it's used in multiple unit tests, so I left it.
04bfe78
to
d047044
Compare
@hjpotter92 could you please look into test workflow fail on 'Install dependencies' step? It may have something to do with recent EOL of Ubuntu 18.04. |
hey; yes! I've another branch where i'm trying to fix those; but keep hitting this:
it appears to be dependency issue; but have been unable so far to resolve it :( link: https://github.com/livepeer/go-livepeer/actions/runs/4245335907/jobs/7380710048 |
It either doesn't link with Not sure it's the same issue as in test workflow, though. |
Hey! @cyberj0g thanks for that. adding the builds are now succeeding (had to also trigger a clean cache for darwin builds). |
9a8181c
to
0d5dc5a
Compare
Codecov Report
@@ Coverage Diff @@
## master #2751 +/- ##
===================================================
- Coverage 56.28521% 56.15105% -0.13416%
===================================================
Files 88 87 -1
Lines 19172 19013 -159
===================================================
- Hits 10791 10676 -115
+ Misses 7789 7753 -36
+ Partials 592 584 -8
... and 1 file with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
@hjpotter92 sorry to bother you again, but now it fails with:
See |
hey @cyberj0g I had been afk for some time; so couldn't reply. but it looks like the issue was fixed by @mjh1 here: https://github.com/livepeer/go-livepeer/pull/2764/files#diff-245392b692a50c38ecab4381b118862db514035c10983f3bd4f4b7f1f4be4692R51 once you rebase your branch on current cc @thomshutt @mjh1 |
850053a
to
9f1f404
Compare
Remove Epic verifier and corresponding CLI arguments, because it's replaced with local verification and fast verification based on MPEG-7 signatures.
#2737