Merge pull request #8784 from filecoin-project/arajasek-patch-2

chore: vm: Rename tracing envvar to LOTUS_VM_ENABLE_TRACING
This commit is contained in:
Łukasz Magiera 2022-06-02 10:31:51 +02:00 committed by GitHub
commit eb84bf2ebd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ func (m *Message) ValueReceived() abi.TokenAmount {
}
// EnableDetailedTracing, if true, outputs gas tracing in execution traces.
var EnableDetailedTracing = os.Getenv("LOTUS_VM_ENABLE_GAS_TRACING_VERY_SLOW") == "1"
var EnableDetailedTracing = os.Getenv("LOTUS_VM_ENABLE_TRACING") == "1"
type Runtime struct {
rt7.Message