Commit ee7abf3b authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #4017 from epociask/fix/debug-regression-exporter

Fix: Proper debug output for L1 CTC Address env var in l2geth-exporter
parents 58d22477 896e2338
---
"@eth-optimism/l2geth-exporter": patch
---
Fix: Adding proper debug output for L1 CTC Address env var in l2geth-exporter
...@@ -33,7 +33,7 @@ func main() { ...@@ -33,7 +33,7 @@ func main() {
} }
ctcAddress := os.Getenv("OVM_CTC_ADDRESS") ctcAddress := os.Getenv("OVM_CTC_ADDRESS")
if ctcAddress == "" { if ctcAddress == "" {
log.Error("CTC_ADDRESS environmental variable is required") log.Error("OVM_CTC_ADDRESS environmental variable is required")
os.Exit(1) os.Exit(1)
} }
sccAddress := os.Getenv("OVM_SCC_ADDRESS") sccAddress := os.Getenv("OVM_SCC_ADDRESS")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment