ed4478bc72
Move self-contained pieces into their own package. This spells out the depedencies and the context each sub-package focuses on. Not the final structure as it's WIP. Just tying the knots while climbing up the rope.
14 lines
383 B
Go
14 lines
383 B
Go
package claimnode
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
// ErrInvalidHeight is returned when the height is invalid.
|
|
ErrInvalidHeight = fmt.Errorf("invalid height")
|
|
|
|
// ErrNotFound is returned when the Claim or Support is not found.
|
|
ErrNotFound = fmt.Errorf("not found")
|
|
|
|
// ErrDuplicate is returned when the Claim or Support already exists in the node.
|
|
ErrDuplicate = fmt.Errorf("duplicate")
|
|
)
|