OSDN Git Service

Feat(BVM): change op sub (#1869)
[bytom/bytom.git] / protocol / consensus.go
1 package protocol
2
3 import "github.com/bytom/bytom/errors"
4
5 var (
6         // ErrDoubleSignBlock represent the consensus is double sign in same height of different block
7         ErrDoubleSignBlock  = errors.New("the consensus is double sign in same height of different block")
8         errInvalidSignature = errors.New("the signature of block is invalid")
9 )