Merge pull request #8734 from filecoin-project/asr/implicit-fail

fvm: fail if implicit message fails
This commit is contained in:
Aayush Rajasekaran 2022-05-27 11:43:34 -04:00 committed by GitHub
commit 40d75d17d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,7 @@ package vm
import (
"bytes"
"context"
"fmt"
"os"
"time"
@ -413,12 +414,18 @@ func (vm *FVM) ApplyImplicitMessage(ctx context.Context, cmsg *types.Message) (*
}
}
return &ApplyRet{
applyRet := &ApplyRet{
MessageReceipt: receipt,
ActorErr: aerr,
ExecutionTrace: et,
Duration: duration,
}, nil
}
if ret.ExitCode != 0 {
return applyRet, fmt.Errorf("implicit message failed with exit code: %d and error: %w", ret.ExitCode, applyRet.ActorErr)
}
return applyRet, nil
}
func (vm *FVM) Flush(ctx context.Context) (cid.Cid, error) {