-
Notifications
You must be signed in to change notification settings - Fork 389
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
chore: cleanup gno files #3527
chore: cleanup gno files #3527
Conversation
This PR mostly removes some unused variables and type assertions that should have been identified by `golang` at compile time. These errors were flagged by `gnopls`, and I'm unsure why they weren't detected earlier. We have a way to identify them using our own `gno` tools. Signed-off-by: gfanton <[email protected]>
🛠 PR Checks SummaryAll Automated Checks passed. ✅ Manual Checks (for Reviewers):
Read More🤖 This bot helps streamline PR reviews by verifying automated checks and providing guidance for contributors and reviewers. ✅ Automated Checks (for Contributors):🟢 Maintainers must be able to edit this pull request (more info) ☑️ Contributor Actions:
☑️ Reviewer Actions:
📚 Resources:Debug
|
Seems this is also unused:
|
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.
Just address the comment above and it's good
These are not caught by |
This PR mostly removes some unused variables and type assertions that should have been identified by
golang
as error at compile time. These errors were flagged bygnopls
, and I'm unsure why they are not currently detected as error by our currentgno
tools suite.