From 5544cd7ce24974ed9d5b45188a51e8bbceb9b961 Mon Sep 17 00:00:00 2001 From: Keshav Gupta Date: Thu, 23 Jun 2022 16:42:29 +0200 Subject: [PATCH] Case sensitive naming --- test/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.ts b/test/index.ts index 401ef3e..c91d1f4 100644 --- a/test/index.ts +++ b/test/index.ts @@ -10,7 +10,7 @@ describe("Rln", function () { console.log("PoseidonHasher deployed to:", poseidonHasher.address); - const Rln = await ethers.getContractFactory("Rln"); + const Rln = await ethers.getContractFactory("RLN"); const rln = await Rln.deploy(1000000000000000,10,poseidonHasher.address); await rln.deployed();