Skip to content

Commit

Permalink
Fixing comments
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Stefanov <[email protected]>
  • Loading branch information
stefan-stefanooov committed Nov 23, 2023
1 parent 0d70359 commit 05e848c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion contracts/solidity/oz/ERC-2612/ERC2612.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
Expand Down
7 changes: 1 addition & 6 deletions test/solidity/oz/ERC-2612/erc-2612.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function permitRequestType() {
]
}

describe('@solidityequiv3 ERC2612 Tests', function () {
describe('@OZERC2612 ERC2612 Tests', function () {
let signers, wallet, wallet2, permitRequest
let contract, splitSignature

Expand All @@ -49,10 +49,6 @@ describe('@solidityequiv3 ERC2612 Tests', function () {
contract = await factory.deploy()
await contract.deployed()
await contract.connect(wallet).mint(MINT_AMOUNT)
// const supply = await contract.totalSupply()
// const balanceOf = await contract.balanceOf(wallet.address)
// const balanceOf2 = await contract.balanceOf(wallet2.address)
// const allowance = await contract.allowance(wallet.address, wallet2.address)

permitRequest = {
owner: wallet.address,
Expand All @@ -71,7 +67,6 @@ describe('@solidityequiv3 ERC2612 Tests', function () {
const mismatchedSignature = await wallet2._signTypedData(domain, types, permitRequest);
splitSignature = ethers.utils.splitSignature(signature);
mismatchedSplitSignature = ethers.utils.splitSignature(mismatchedSignature);
console.log()
})

it('should deploy contract', async function () {
Expand Down

0 comments on commit 05e848c

Please sign in to comment.