mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-29 23:33:37 +00:00
10 lines
211 B
Go
10 lines
211 B
Go
|
package blockchainer
|
||
|
|
||
|
import "github.com/nspcc-dev/neo-go/pkg/core/block"
|
||
|
|
||
|
// Blockqueuer is an interface for blockqueue.
|
||
|
type Blockqueuer interface {
|
||
|
AddBlock(block *block.Block) error
|
||
|
BlockHeight() uint32
|
||
|
}
|