-
Notifications
You must be signed in to change notification settings - Fork 53
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
fix: build failure on testwaku #2337
Conversation
You can find the image built from this PR at
Built from 725784c |
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! Thanks for it!
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.
Yes! Thanks I just notice the same thing.
Could somebody point me to the error, please? |
I just got ambiguous method call error while compiling testwaku. It is in the ci as well. Removing the toBytes has just simple solve the issue as that one is part of nim/stew already. Forex: |
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.
Thank you! 🤩
Oh, okay, I just tried running them and I got the issue. Funny how I didn't get that before. LGTM :) |
Description
test(peer-connection-managenent): Functional Tests (#2321) @ e9d083b introduced build error through ambigous function call, testwaku build failed on master.
It turned out, some commits ago a new - duplicated toBytes proc was introduced that makes build fail for testwaku.
Removed it and checked that all tests on master no runs fine.
Changes