2017-11-06 16:52:07 +00:00
|
|
|
package repositories
|
|
|
|
|
2017-11-06 18:53:43 +00:00
|
|
|
import "github.com/8thlight/vulcanizedb/pkg/core"
|
2017-11-06 16:52:07 +00:00
|
|
|
|
|
|
|
type Repository interface {
|
|
|
|
CreateBlock(block core.Block)
|
2017-11-06 20:15:02 +00:00
|
|
|
BlockCount() int
|
|
|
|
FindBlockByNumber(blockNumber int64) *core.Block
|
2017-11-06 16:52:07 +00:00
|
|
|
}
|