Merge remote-tracking branch 'parity/master' into bft

This commit is contained in:
keorn 2016-11-15 10:26:37 +00:00
commit 9315a85301
2 changed files with 7 additions and 1 deletions

View File

@ -4,7 +4,7 @@ homepage = "http://ethcore.io"
repository = "https://github.com/ethcore/parity"
license = "GPL-3.0"
name = "ethcore-bigint"
version = "0.1.1"
version = "0.1.2"
authors = ["Ethcore <admin@ethcore.io>"]
build = "build.rs"

View File

@ -386,6 +386,12 @@ macro_rules! impl_hash {
}
}
}
impl<'a> From<&'a [u8]> for $from {
fn from(s: &'a [u8]) -> $from {
$from::from_slice(s)
}
}
}
}