From c090d30253c54703d9963f3aecad25c49f32d783 Mon Sep 17 00:00:00 2001 From: Mohammed Sohail Date: Tue, 17 May 2022 20:27:35 +0300 Subject: [PATCH] fix: (test) env var name --- batch_balance/batch_balance_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batch_balance/batch_balance_test.go b/batch_balance/batch_balance_test.go index 9ccf2bb..c863640 100644 --- a/batch_balance/batch_balance_test.go +++ b/batch_balance/batch_balance_test.go @@ -14,7 +14,7 @@ type tConfig struct { var conf = &tConfig{ rpcProvider: os.Getenv("RPC_PROVIDER"), - batchContract: os.Getenv("BATCH_BALANCE"), + batchContract: os.Getenv("BATCH_CONTRACT"), } func TestBatchBalance_Connect(t *testing.T) {