2018-03-14 09:36:59 +00:00
|
|
|
package core
|
|
|
|
|
2018-11-26 21:12:33 +00:00
|
|
|
import (
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/util"
|
|
|
|
)
|
2018-03-14 09:36:59 +00:00
|
|
|
|
|
|
|
// Blockchainer is an interface that abstract the implementation
|
|
|
|
// of the blockchain.
|
|
|
|
type Blockchainer interface {
|
|
|
|
AddHeaders(...*Header) error
|
|
|
|
AddBlock(*Block) error
|
|
|
|
BlockHeight() uint32
|
|
|
|
HeaderHeight() uint32
|
2018-03-23 20:36:59 +00:00
|
|
|
GetBlock(hash util.Uint256) (*Block, error)
|
2018-03-14 09:36:59 +00:00
|
|
|
GetHeaderHash(int) util.Uint256
|
|
|
|
CurrentHeaderHash() util.Uint256
|
|
|
|
CurrentBlockHash() util.Uint256
|
|
|
|
HasBlock(util.Uint256) bool
|
|
|
|
HasTransaction(util.Uint256) bool
|
2018-11-26 21:12:33 +00:00
|
|
|
GetAssetState(util.Uint256) *AssetState
|
2019-02-08 08:04:38 +00:00
|
|
|
GetAccountState(util.Uint160) *AccountState
|
2018-03-14 09:36:59 +00:00
|
|
|
}
|