Skip to content

Commit

Permalink
remove must_use attribute from ed25519 error source
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch committed Feb 25, 2025
1 parent 211569a commit 88b12f6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion soroban-sdk/src/testutils/sign.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ pub mod ed25519 {
}

impl<E: std::error::Error> std::error::Error for Error<E> {
#[must_use]
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Self::XdrError(e) => e.source(),
Expand Down

0 comments on commit 88b12f6

Please sign in to comment.