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.
|
package common
|
|
|
|
import "errors"
|
|
|
|
// ErrNotInFF is used when the *big.Int does not fit inside the Finite Field
|
|
var ErrNotInFF = errors.New("BigInt not inside the Finite Field")
|
|
|
|
// ErrNumOverflow is used when a given value overflows the maximum capacity of the parameter
|
|
var ErrNumOverflow = errors.New("Value overflows the type")
|
|
|
|
// ErrBatchQueueEmpty is used when the coordinator.BatchQueue.Pop() is called and has no elements
|
|
var ErrBatchQueueEmpty = errors.New("BatchQueue empty")
|