-
Notifications
You must be signed in to change notification settings - Fork 637
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
feat: add solidity ABI support in ICS20Transfer ics20-1 #7592
Changes from all commits
bef075a
6d45aa2
5b75ac0
3d84b47
974644d
36e2d06
a4d40d3
f09f839
735b9df
9e180fa
fc86099
7e53a55
b7f2e6b
13a13ab
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 |
---|---|---|
|
@@ -40,6 +40,9 @@ issues: | |
- linters: | ||
- staticcheck | ||
text: "SA1019:" # silence errors on usage of deprecated funcs | ||
- text: "G115: integer overflow conversion" | ||
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. This is not strictly necessary currently, but we will need it as soon as we update to a newer version of golangci-lint. We use a newer one in the solidity repo (and 1.57 seems broken on my Mac, so I am running the same from the solidity repo), which turns on G115 by default. We need convert integers constantly, and there is no way to appease the linter (according to issues I found on gh). So if we just add it now, we'll save ourselves some pain when we upgrade golangci-lint. |
||
linters: | ||
- gosec | ||
|
||
max-issues-per-linter: 10000 | ||
max-same-issues: 10000 | ||
|
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.
Some changes in dependencies has made this necessary