Documentation ¶
Index ¶
- Constants
- Variables
- func SetUploaderEnabled(enabled bool)
- type ComputationManager
- type Manager
- func (e *Manager) ComputeBlock(ctx context.Context, block *entity.ExecutableBlock, view state.View) (*execution.ComputationResult, error)
- func (e *Manager) ExecuteScript(ctx context.Context, code []byte, arguments [][]byte, blockHeader *flow.Header, ...) ([]byte, error)
- func (e *Manager) GetAccount(address flow.Address, blockHeader *flow.Header, view state.View) (*flow.Account, error)
- type ProgramsCache
- type VirtualMachine
Constants ¶
View Source
const DefaultProgramsCacheSize = 1000
View Source
const MaxScriptErrorMessageSize = 1000 // 1000 chars
Variables ¶
View Source
var DefaultScriptExecutionTimeLimit = 10 * time.Second
View Source
var DefaultScriptLogThreshold = 1 * time.Second
Functions ¶
func SetUploaderEnabled ¶ added in v0.25.0
func SetUploaderEnabled(enabled bool)
Types ¶
type ComputationManager ¶
type ComputationManager interface { ExecuteScript(context.Context, []byte, [][]byte, *flow.Header, state.View) ([]byte, error) ComputeBlock( ctx context.Context, block *entity.ExecutableBlock, view state.View, ) (*execution.ComputationResult, error) GetAccount(addr flow.Address, header *flow.Header, view state.View) (*flow.Account, error) }
type Manager ¶
type Manager struct {
// contains filtered or unexported fields
}
Manager manages computation and execution
func New ¶
func New( logger zerolog.Logger, metrics module.ExecutionMetrics, tracer module.Tracer, me module.Local, protoState protocol.State, vm VirtualMachine, vmCtx fvm.Context, programsCacheSize uint, committer computer.ViewCommitter, scriptLogThreshold time.Duration, scriptExecutionTimeLimit time.Duration, uploaders []uploader.Uploader, eds state_synchronization.ExecutionDataService, edCache state_synchronization.ExecutionDataCIDCache, ) (*Manager, error)
func (*Manager) ComputeBlock ¶
func (e *Manager) ComputeBlock( ctx context.Context, block *entity.ExecutableBlock, view state.View, ) (*execution.ComputationResult, error)
func (*Manager) ExecuteScript ¶
type ProgramsCache ¶ added in v0.14.6
type ProgramsCache struct {
// contains filtered or unexported fields
}
func NewProgramsCache ¶ added in v0.14.6
func NewProgramsCache(size uint) (*ProgramsCache, error)
func (*ProgramsCache) Get ¶ added in v0.14.6
func (pc *ProgramsCache) Get(blockID flow.Identifier) *programs.Programs
func (*ProgramsCache) Set ¶ added in v0.14.6
func (pc *ProgramsCache) Set(blockId flow.Identifier, programs *programs.Programs)
Click to show internal directories.
Click to hide internal directories.