blocks_applier

package
v0.7.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 8, 2020 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewMockPeerManagerWithDefaultPeer

func NewMockPeerManagerWithDefaultPeer() (*mockPeerManager, *mock.Peer)

Types

type BlocksApplier

type BlocksApplier struct {
	// contains filtered or unexported fields
}

func NewBlocksApplier

func NewBlocksApplier() *BlocksApplier

func (*BlocksApplier) Apply

func (a *BlocksApplier) Apply(state state.State, blocks []*proto.Block) error

type MockStateManager

type MockStateManager struct {
	Peers_ []proto.TCPAddr
	// contains filtered or unexported fields
}

func NewMockStateManager

func NewMockStateManager(blocks ...*proto.Block) (*MockStateManager, error)

func (*MockStateManager) AccountBalance

func (a *MockStateManager) AccountBalance(account proto.Recipient, asset []byte) (uint64, error)

func (*MockStateManager) ActivationHeight

func (a *MockStateManager) ActivationHeight(featureID int16) (uint64, error)

func (*MockStateManager) AddBlock

func (a *MockStateManager) AddBlock([]byte) (*proto.Block, error)

func (*MockStateManager) AddBlocks

func (a *MockStateManager) AddBlocks(blocks [][]byte, initialisation bool) error

func (*MockStateManager) AddDeserializedBlock

func (a *MockStateManager) AddDeserializedBlock(block *proto.Block) (*proto.Block, error)

func (*MockStateManager) AddNewBlocks

func (a *MockStateManager) AddNewBlocks(blocks [][]byte) error

func (*MockStateManager) AddNewDeserializedBlocks

func (a *MockStateManager) AddNewDeserializedBlocks(blocks []*proto.Block) (*proto.Block, error)

func (*MockStateManager) AddOldBlocks

func (a *MockStateManager) AddOldBlocks(blocks [][]byte) error

func (*MockStateManager) AddOldDeserializedBlocks

func (a *MockStateManager) AddOldDeserializedBlocks([]*proto.Block) error

func (*MockStateManager) AddingBlockHeight

func (a *MockStateManager) AddingBlockHeight() (proto.Height, error)

func (*MockStateManager) AddrByAlias

func (a *MockStateManager) AddrByAlias(alias proto.Alias) (proto.Address, error)

func (*MockStateManager) AddressesNumber

func (a *MockStateManager) AddressesNumber(wavesonly bool) (uint64, error)

func (*MockStateManager) AllFeatures

func (a *MockStateManager) AllFeatures() ([]int16, error)

func (*MockStateManager) ApprovalHeight

func (a *MockStateManager) ApprovalHeight(featureID int16) (uint64, error)

func (*MockStateManager) AssetInfo

func (a *MockStateManager) AssetInfo(assetID crypto.Digest) (*proto.AssetInfo, error)

func (*MockStateManager) AssetIsSponsored

func (a *MockStateManager) AssetIsSponsored(assetID crypto.Digest) (bool, error)

func (*MockStateManager) Block

func (a *MockStateManager) Block(blockID proto.BlockID) (*proto.Block, error)

func (*MockStateManager) BlockByHeight

func (a *MockStateManager) BlockByHeight(height proto.Height) (*proto.Block, error)

func (*MockStateManager) BlockBytes

func (a *MockStateManager) BlockBytes(blockID proto.BlockID) ([]byte, error)

func (*MockStateManager) BlockBytesByHeight

func (a *MockStateManager) BlockBytesByHeight(height proto.Height) ([]byte, error)

func (*MockStateManager) BlockIDToHeight

func (a *MockStateManager) BlockIDToHeight(blockID proto.BlockID) (uint64, error)

func (*MockStateManager) BlockVRF

func (a *MockStateManager) BlockVRF(header *proto.BlockHeader, height proto.Height) ([]byte, error)

func (*MockStateManager) BlockchainSettings

func (a *MockStateManager) BlockchainSettings() (*settings.BlockchainSettings, error)

func (*MockStateManager) Close

func (a *MockStateManager) Close() error

func (*MockStateManager) CurrentScore

func (a *MockStateManager) CurrentScore() (*big.Int, error)

func (*MockStateManager) EffectiveBalanceStable

func (a *MockStateManager) EffectiveBalanceStable(account proto.Recipient, startHeight, endHeight uint64) (uint64, error)

func (*MockStateManager) FullAssetInfo

func (a *MockStateManager) FullAssetInfo(assetID crypto.Digest) (*proto.FullAssetInfo, error)

func (*MockStateManager) FullWavesBalance

func (a *MockStateManager) FullWavesBalance(account proto.Recipient) (*proto.FullWavesBalance, error)

func (*MockStateManager) Header

func (a *MockStateManager) Header(block proto.BlockID) (*proto.BlockHeader, error)

func (*MockStateManager) HeaderByHeight

func (a *MockStateManager) HeaderByHeight(height uint64) (*proto.BlockHeader, error)

func (*MockStateManager) HeaderBytes

func (a *MockStateManager) HeaderBytes(blockID proto.BlockID) ([]byte, error)

func (*MockStateManager) HeaderBytesByHeight

func (a *MockStateManager) HeaderBytesByHeight(height uint64) ([]byte, error)

func (*MockStateManager) Height

func (a *MockStateManager) Height() (proto.Height, error)

func (*MockStateManager) HeightToBlockID

func (a *MockStateManager) HeightToBlockID(height uint64) (proto.BlockID, error)

func (*MockStateManager) HitSourceAtHeight

func (a *MockStateManager) HitSourceAtHeight(height proto.Height) ([]byte, error)

func (*MockStateManager) InvokeResultByID

func (a *MockStateManager) InvokeResultByID(invokeID crypto.Digest) (*proto.ScriptResult, error)

func (*MockStateManager) IsActivated

func (a *MockStateManager) IsActivated(featureID int16) (bool, error)

func (*MockStateManager) IsActiveAtHeight

func (a *MockStateManager) IsActiveAtHeight(featureID int16, height proto.Height) (bool, error)

func (*MockStateManager) IsActiveLeasing

func (a *MockStateManager) IsActiveLeasing(leaseID crypto.Digest) (bool, error)

func (*MockStateManager) IsApproved

func (a *MockStateManager) IsApproved(featureID int16) (bool, error)

func (*MockStateManager) IsApprovedAtHeight

func (a *MockStateManager) IsApprovedAtHeight(featureID int16, height uint64) (bool, error)

func (*MockStateManager) IsNotFound

func (a *MockStateManager) IsNotFound(err error) bool

func (*MockStateManager) Map

func (a *MockStateManager) Map(func(state.State) error) error

func (*MockStateManager) Mutex

func (a *MockStateManager) Mutex() *lock.RwMutex

func (*MockStateManager) NewAddrTransactionsIterator

func (a *MockStateManager) NewAddrTransactionsIterator(addr proto.Address) (state.TransactionIterator, error)

func (*MockStateManager) Peers

func (a *MockStateManager) Peers() ([]proto.TCPAddr, error)

func (*MockStateManager) ProvidesExtendedApi

func (a *MockStateManager) ProvidesExtendedApi() (bool, error)

func (*MockStateManager) ProvidesStateHashes

func (a *MockStateManager) ProvidesStateHashes() (bool, error)

func (*MockStateManager) ResetValidationList

func (a *MockStateManager) ResetValidationList()

func (*MockStateManager) RetrieveBinaryEntry

func (a *MockStateManager) RetrieveBinaryEntry(account proto.Recipient, key string) (*proto.BinaryDataEntry, error)

func (*MockStateManager) RetrieveBooleanEntry

func (a *MockStateManager) RetrieveBooleanEntry(account proto.Recipient, key string) (*proto.BooleanDataEntry, error)

func (*MockStateManager) RetrieveEntries

func (a *MockStateManager) RetrieveEntries(account proto.Recipient) ([]proto.DataEntry, error)

func (*MockStateManager) RetrieveEntry

func (a *MockStateManager) RetrieveEntry(account proto.Recipient, key string) (proto.DataEntry, error)

func (*MockStateManager) RetrieveIntegerEntry

func (a *MockStateManager) RetrieveIntegerEntry(account proto.Recipient, key string) (*proto.IntegerDataEntry, error)

func (*MockStateManager) RetrieveStringEntry

func (a *MockStateManager) RetrieveStringEntry(account proto.Recipient, key string) (*proto.StringDataEntry, error)

func (*MockStateManager) RollbackTo

func (a *MockStateManager) RollbackTo(removalEdge proto.BlockID) error

func (*MockStateManager) RollbackToHeight

func (a *MockStateManager) RollbackToHeight(height uint64) error

func (*MockStateManager) SavePeers

func (a *MockStateManager) SavePeers([]proto.TCPAddr) error

func (*MockStateManager) ScoreAtHeight

func (a *MockStateManager) ScoreAtHeight(height uint64) (*big.Int, error)

func (*MockStateManager) ScriptInfoByAccount

func (a *MockStateManager) ScriptInfoByAccount(account proto.Recipient) (*proto.ScriptInfo, error)

func (*MockStateManager) ScriptInfoByAsset

func (a *MockStateManager) ScriptInfoByAsset(assetID crypto.Digest) (*proto.ScriptInfo, error)

func (*MockStateManager) StartProvidingExtendedApi

func (a *MockStateManager) StartProvidingExtendedApi() error

func (*MockStateManager) StateHashAtHeight

func (a *MockStateManager) StateHashAtHeight(height uint64) (*proto.StateHash, error)

func (*MockStateManager) TopBlock

func (a *MockStateManager) TopBlock() *proto.Block

func (*MockStateManager) TransactionByID

func (a *MockStateManager) TransactionByID(id []byte) (proto.Transaction, error)

func (*MockStateManager) TransactionHeightByID

func (a *MockStateManager) TransactionHeightByID(id []byte) (proto.Height, error)

func (*MockStateManager) ValidateNextTx

func (a *MockStateManager) ValidateNextTx(tx proto.Transaction, currentTimestamp, parentTimestamp uint64, version proto.BlockVersion, checkScripts bool) error

func (*MockStateManager) VotesNum

func (a *MockStateManager) VotesNum(featureID int16) (uint64, error)

func (*MockStateManager) VotesNumAtHeight

func (a *MockStateManager) VotesNumAtHeight(featureID int16, height proto.Height) (uint64, error)

func (*MockStateManager) WavesAddressesNumber

func (a *MockStateManager) WavesAddressesNumber() (uint64, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL