From 1b6aa14b3fb8a3537dbf1ee3103709cd3f57b626 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Santana=20Gon=C3=A7alves?= Date: Tue, 9 Jul 2024 19:33:17 -0300 Subject: [PATCH] fix rif token contract name --- contracts/RIFToken.sol | 4 +--- test/RIFToken.test.ts | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/contracts/RIFToken.sol b/contracts/RIFToken.sol index e0314f3..9a1b965 100644 --- a/contracts/RIFToken.sol +++ b/contracts/RIFToken.sol @@ -3,8 +3,6 @@ pragma solidity ^0.4.24; import "rif-token-contracts/contracts/RIF/RIFToken.sol"; -contract RIFTokenContact is RIFToken { - -} +contract RIFTokenContract is RIFToken {} /* File must exist, else test/RIFToken.test.ts will fail */ diff --git a/test/RIFToken.test.ts b/test/RIFToken.test.ts index f26dec6..432d728 100644 --- a/test/RIFToken.test.ts +++ b/test/RIFToken.test.ts @@ -10,7 +10,7 @@ describe('RIFToken Contract', function () { const [deployer, owner1, owner2] = await hre.viem.getWalletClients() const client = await hre.viem.getPublicClient() - const rif = await hre.viem.deployContract('RIFTokenContact', []) + const rif = await hre.viem.deployContract('RIFTokenContract', []) return { deployer, client, rif, owner1, owner2 } }