aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugin/evm/vm.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugin/evm/vm.go b/plugin/evm/vm.go
index fc4c971..bd8f9a4 100644
--- a/plugin/evm/vm.go
+++ b/plugin/evm/vm.go
@@ -253,6 +253,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 {