Created
July 18, 2019 22:07
-
-
Save sanket1729/4b4a22a1e40ad1f4ac9f7362b85920df to your computer and use it in GitHub Desktop.
git diff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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