fork of https://github.com/poanetwork/threshold_crypto for the needs of nextgraph.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
threshold_crypto/error.rs

10 lines
233 B

error_chain! {
errors {
NotEnoughShares {
description("not enough signature shares")
}
DuplicateEntry {
description("signature shares contain a duplicated index")
}
}
}