Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sanket1729/4b4a22a1e40ad1f4ac9f7362b85920df to your computer and use it in GitHub Desktop.
Save sanket1729/4b4a22a1e40ad1f4ac9f7362b85920df to your computer and use it in GitHub Desktop.
git diff
fn cause(&self) -> Option<&error::Error> {
- None
+ match self{
+ Error::Secp(x) => Some(x),
+ x => Some(x),
+ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment