From 600147a5fceedba028821f4aaf868ad0c27e3bcb Mon Sep 17 00:00:00 2001 From: "M. J. Fromberger" Date: Fri, 27 Aug 2021 12:36:39 -0700 Subject: [PATCH] Make chainID a const --- state/indexer/sink/psql/psql_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/state/indexer/sink/psql/psql_test.go b/state/indexer/sink/psql/psql_test.go index 10e859129..301bec5c7 100644 --- a/state/indexer/sink/psql/psql_test.go +++ b/state/indexer/sink/psql/psql_test.go @@ -41,6 +41,7 @@ const ( port = "5432" dsn = "postgres://%s:%s@localhost:%s/%s?sslmode=disable" dbName = "postgres" + chainID = "test-chainID" ) func TestMain(m *testing.M) {