From af525a4cf2819500ae85554c3a5651d79b2ae60c Mon Sep 17 00:00:00 2001 From: Aayush Date: Thu, 14 Jul 2022 14:55:48 -0400 Subject: [PATCH] VM: Remove v15 FVM support --- chain/vm/vmi.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/chain/vm/vmi.go b/chain/vm/vmi.go index 6c4f6c80c..c17a2aca5 100644 --- a/chain/vm/vmi.go +++ b/chain/vm/vmi.go @@ -37,13 +37,5 @@ func NewVM(ctx context.Context, opts *VMOpts) (Interface, error) { return NewFVM(ctx, opts) } - // Remove after v16 upgrade, this is only to support testing and validation of the FVM - if useFvmForMainnetV15 && opts.NetworkVersion >= network.Version15 { - if useFvmDebug { - return NewDualExecutionFVM(ctx, opts) - } - return NewFVM(ctx, opts) - } - return NewLegacyVM(ctx, opts) }