File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ contract StakeHolderNative is StakeHolderBase {
2525 /**
2626 * @inheritdoc IStakeHolder
2727 */
28- function getToken () external virtual view returns (address ) {
28+ function getToken () external view virtual returns (address ) {
2929 return address (0 );
3030 }
3131
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ import {IWIMX} from "./IWIMX.sol";
1212 * The StakeHolderWIMX contract is designed to be upgradeable.
1313 */
1414contract StakeHolderWIMX is StakeHolderNative {
15-
1615 /// @notice The token used for staking.
1716 IWIMX internal wIMX;
1817
@@ -40,7 +39,7 @@ contract StakeHolderWIMX is StakeHolderNative {
4039 /**
4140 * @inheritdoc IStakeHolder
4241 */
43- function getToken () external override view returns (address ) {
42+ function getToken () external view override returns (address ) {
4443 return address (wIMX);
4544 }
4645
You can’t perform that action at this time.
0 commit comments