Remove unsigned message pointer from Runtime

This commit is contained in:
austinabell 2020-08-27 17:34:45 -04:00
parent efd2129187
commit 39ef3a701b
No known key found for this signature in database
GPG Key ID: C1CB22918F2A46DE
2 changed files with 0 additions and 2 deletions

View File

@ -34,7 +34,6 @@ type Runtime struct {
vm *VM
state *state.StateTree
msg *types.Message
vmsg vmr.Message
height abi.ChainEpoch
cst cbor.IpldStore

View File

@ -97,7 +97,6 @@ func (vm *VM) makeRuntime(ctx context.Context, msg *types.Message, origin addres
ctx: ctx,
vm: vm,
state: vm.cstate,
msg: msg,
origin: origin,
originNonce: originNonce,
height: vm.blockHeight,