Skip to content

Commit 46016fe

Browse files
rodrigoncalvesTravellerOnTheRun
authored andcommitted
fix rif token contract name
1 parent da461c6 commit 46016fe

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

contracts/RIFToken.sol

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ pragma solidity ^0.4.24;
33

44
import "rif-token-contracts/contracts/RIF/RIFToken.sol";
55

6-
contract RIFTokenContact is RIFToken {
7-
8-
}
6+
contract RIFTokenContract is RIFToken {}
97

108
/* File must exist, else test/RIFToken.test.ts will fail */

test/RIFToken.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('RIFToken Contract', function () {
1010
const [deployer, owner1, owner2] = await hre.viem.getWalletClients()
1111
const client = await hre.viem.getPublicClient()
1212

13-
const rif = await hre.viem.deployContract('RIFTokenContact', [])
13+
const rif = await hre.viem.deployContract('RIFTokenContract', [])
1414
return { deployer, client, rif, owner1, owner2 }
1515
}
1616

0 commit comments

Comments
 (0)