chore: ffi: the latest fvm release

This commit is contained in:
Jennifer Wang 2022-03-26 22:36:32 -04:00
parent b2dbe8dfef
commit 2a988d453c
2 changed files with 12 additions and 5 deletions

View File

@ -233,10 +233,17 @@ func NewFVM(ctx context.Context, opts *VMOpts) (*FVM, error) {
}
}
fvm, err := ffi.CreateFVM(0,
&FvmExtern{Rand: opts.Rand, Blockstore: opts.Bstore, lbState: opts.LookbackState, base: opts.StateBase, epoch: opts.Epoch},
opts.Epoch, opts.BaseFee, circToReport, opts.NetworkVersion, opts.StateBase,
)
fvmOpts := ffi.FVMOpts{
FVMVersion: 0,
Externs: &FvmExtern{Rand: opts.Rand, Blockstore: opts.Bstore, lbState: opts.LookbackState, base: opts.StateBase, epoch: opts.Epoch},
Epoch: opts.Epoch,
BaseFee: opts.BaseFee,
BaseCircSupply: circToReport,
NetworkVersion: opts.NetworkVersion,
StateBase: opts.StateBase,
}
fvm, err := ffi.CreateFVM(&fvmOpts)
if err != nil {
return nil, err
}

2
extern/filecoin-ffi vendored

@ -1 +1 @@
Subproject commit e81d302831f5dcd0c5b7b9415c353f8b43291b8c
Subproject commit 7f93fe5cf63aee1c6c21986903e870b02e337a16