Skip to content

Commit ac52da7

Browse files
fmt
1 parent 91bff51 commit ac52da7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/EnsoToken.sol

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ contract EnsoToken is
5454
_unpause();
5555
}
5656

57+
/**
58+
* @inheritdoc ERC20PermitUpgradeable
59+
*/
5760
function nonces(address owner)
5861
public
5962
view
@@ -65,6 +68,9 @@ contract EnsoToken is
6568
return ERC20PermitUpgradeable.nonces(owner);
6669
}
6770

71+
/**
72+
* @inheritdoc ERC20Upgradeable
73+
*/
6874
function _update(
6975
address from,
7076
address to,

test/TokenTest.t.sol

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
pragma solidity ^0.8.13;
33

44
import { TokenDeployer } from "../script/TokenDeployer.s.sol";
5-
65
import { EnsoToken } from "../src/EnsoToken.sol";
7-
86
import { TestTokenUpgrade } from "../src/test/TestTokenUpgrade.sol";
97
import { Test, console } from "forge-std/Test.sol";
108
import { PausableUpgradeable } from "openzeppelin-contracts-upgradeable/utils/PausableUpgradeable.sol";

0 commit comments

Comments
 (0)