minor fix

This commit is contained in:
bhavik-m 2022-03-07 00:21:01 +05:30
parent 9b7fe50973
commit 0d7080b8b1
2 changed files with 1 additions and 3 deletions

View File

@ -2,6 +2,4 @@ pragma solidity ^0.7.0;
interface ILido { interface ILido {
function submit(address _referral) external payable returns (uint256); function submit(address _referral) external payable returns (uint256);
function balanceOf(address owner) external view returns (uint256);
} }

View File

@ -39,5 +39,5 @@ abstract contract Resolver is Events, DSMath, Basic, Helpers {
} }
contract ConnectV2LidoStEth is Resolver { contract ConnectV2LidoStEth is Resolver {
string public constant name = "LidoStEth-v1.0"; string public constant name = "LidoStEth-v1";
} }