From 694c45cd65a8b37df9318b7630fd887aa0e688db Mon Sep 17 00:00:00 2001 From: Aayush Date: Wed, 23 Mar 2022 13:17:32 -0400 Subject: [PATCH] FVM: log when fvm is used --- chain/vm/fvm.go | 1 + 1 file changed, 1 insertion(+) diff --git a/chain/vm/fvm.go b/chain/vm/fvm.go index 922eb77c5..72c84f966 100644 --- a/chain/vm/fvm.go +++ b/chain/vm/fvm.go @@ -217,6 +217,7 @@ type FVM struct { } func NewFVM(ctx context.Context, opts *VMOpts) (*FVM, error) { + log.Info("using the FVM, this is experimental!") circToReport := opts.FilVested // For v14 (and earlier), we perform the FilVested portion of the calculation, and let the FVM dynamically do the rest // v15 and after, the circ supply is always constant per epoch, so we calculate the base and report it at creation