Skip to content

Commit 197e2a0

Browse files
committed
fix env var name
1 parent f1cbd72 commit 197e2a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/observability.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func BlockScoutUp(url, chainID string) error {
100100
}
101101
blockscoutDir := filepath.Join(obsDir, "blockscout")
102102
os.Setenv("BLOCKSCOUT_RPC_URL", url)
103-
os.Setenv("BLOCKSCOUT_CHAID_ID", chainID)
103+
os.Setenv("BLOCKSCOUT_CHAIN_ID", chainID)
104104
// old migrations for v15 is still applied somehow, cleaning up DB helps
105105
if err := RunCommand("bash", "-c", fmt.Sprintf(`
106106
cd %s && \

0 commit comments

Comments
 (0)