-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Review code for ignored errors #155
Labels
good first issue
Good for newcomers
Comments
@garious how do you find these warnings? |
The compiler won't raise a warning unless the return value is |
We're in good shape here. Closing this ticket. |
FYI, as of 1.27.0, one can add |
vkomenda
pushed a commit
to vkomenda/solana
that referenced
this issue
Aug 29, 2021
steviez
pushed a commit
to steviez/solana
that referenced
this issue
Mar 8, 2024
willhickey
pushed a commit
that referenced
this issue
Mar 9, 2024
stevenbooke
pushed a commit
to stevenbooke/solana
that referenced
this issue
Mar 18, 2024
…a-labs#155)" This reverts commit 3cba072.
lijunwangs
pushed a commit
to lijunwangs/solana
that referenced
this issue
Mar 21, 2024
… binaries (backport of solana-labs#155) (solana-labs#349) Use agave prefix in scripts for pre-installed binaries (solana-labs#155) (cherry picked from commit 68be105) Co-authored-by: Justin Starry <justin@anza.xyz>
apfitzge
referenced
this issue
in apfitzge/agave
Mar 21, 2024
… binaries (backport of anza-xyz#155) (anza-xyz#350) Use agave prefix in scripts for pre-installed binaries (anza-xyz#155) (cherry picked from commit 68be105) Co-authored-by: Justin Starry <justin@anza.xyz>
palinko91
pushed a commit
to palinko91/solana
that referenced
this issue
May 7, 2024
…a-labs#155)" This reverts commit 3cba072.
palinko91
pushed a commit
to palinko91/solana
that referenced
this issue
May 7, 2024
…a-labs#155)" This reverts commit 3cba072.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Rust will warn us if we ignore a
Result<T>
, but not aVec<Result<T>>
.@sakridge spotted an instance of that in
process_verified_events()
. Are there others?The text was updated successfully, but these errors were encountered: