snowball 0.1.3

Generic implementation of Snowball consensus algorithm
Documentation
1
2
3
4
5
/// Any object that can be signed
pub trait Signable {
    /// Returns bytes that need to be signed
    fn sign_bytes(&self) -> Vec<u8>;
}