Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccountReader ¶
type AccountReader interface { HeadAccount(address common.Address) (*common.AccountStateBlock, error) GetAccountByHashH(address common.Address, hashH common.HashHeight) *common.AccountStateBlock GetAccountByHash(address common.Address, hash common.Hash) *common.AccountStateBlock GetAccountByHeight(address common.Address, height common.Height) *common.AccountStateBlock GetAccountByFromHash(address common.Address, source common.Hash) *common.AccountStateBlock NextAccountSnapshot() (common.HashHeight, []*common.AccountHashH, error) }
type AccountWriter ¶
type ChainListener ¶
type ChainListener interface { SnapshotInsertCallback(block *common.SnapshotBlock) SnapshotRemoveCallback(block *common.SnapshotBlock) AccountInsertCallback(address common.Address, block *common.AccountStateBlock) AccountRemoveCallback(address common.Address, block *common.AccountStateBlock) }
type ChainReader ¶
type ChainReader interface { SnapshotReader AccountReader }
type FetchRequest ¶
type FetchRequest struct { Chain *common.Address Height common.Height Hash common.Hash PrevCnt uint64 }
func (*FetchRequest) String ¶
func (req *FetchRequest) String() string
type PoolReader ¶
type PoolWriter ¶
type PoolWriter interface { AddSnapshotBlock(block *common.SnapshotBlock) error AddDirectSnapshotBlock(block *common.SnapshotBlock) error AddAccountBlock(address common.Address, block *common.AccountStateBlock) error AddDirectAccountBlock(address common.Address, block *common.AccountStateBlock) error }
type SnapshotReader ¶
type SnapshotReader interface { GenesisSnapshot() (*common.SnapshotBlock, error) HeadSnapshot() (*common.SnapshotBlock, error) GetSnapshotByHashH(hashH common.HashHeight) *common.SnapshotBlock GetSnapshotByHash(hash common.Hash) *common.SnapshotBlock GetSnapshotByHeight(height common.Height) *common.SnapshotBlock }
type SnapshotWriter ¶
type SnapshotWriter interface { InsertSnapshotBlock(block *common.SnapshotBlock) error RollbackSnapshotBlockTo(height common.Height) ([]*common.SnapshotBlock, map[common.Address][]*common.AccountStateBlock, error) }
type SyncStatus ¶
type SyncStatus interface {
Done() bool
}
Click to show internal directories.
Click to hide internal directories.