diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/evm/vm.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugin/evm/vm.go b/plugin/evm/vm.go index 2dd0dd8..3171a6b 100644 --- a/plugin/evm/vm.go +++ b/plugin/evm/vm.go @@ -251,6 +251,14 @@ func (vm *VM) Initialize( return nil } +// Bootstrapping notifies this VM that the consensus engine is performing +// bootstrapping +func (vm *VM) Bootstrapping() error { return nil } + +// Bootstrapped notifies this VM that the consensus engine has finished +// bootstrapping +func (vm *VM) Bootstrapped() error { return nil } + // Shutdown implements the snowman.ChainVM interface func (vm *VM) Shutdown() error { if vm.ctx == nil { |