add view
This commit is contained in:
@@ -73,6 +73,7 @@ contract FilterAdmin is InitializableInternalMintableERC20 {
|
||||
|
||||
//================ View ================
|
||||
function queryMintFee(uint256 rawAmount)
|
||||
view
|
||||
public
|
||||
returns (
|
||||
uint256 poolFee,
|
||||
@@ -87,6 +88,7 @@ contract FilterAdmin is InitializableInternalMintableERC20 {
|
||||
}
|
||||
|
||||
function queryBurnFee(uint256 rawAmount)
|
||||
view
|
||||
public
|
||||
returns (
|
||||
uint256 poolFee,
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
pragma solidity 0.6.9;
|
||||
|
||||
interface IFilterAdmin {
|
||||
function _OWNER_() external returns (address);
|
||||
function _OWNER_() external view returns (address);
|
||||
|
||||
function _CONTROLLER_() external returns (address);
|
||||
function _CONTROLLER_() external view returns (address);
|
||||
|
||||
function init(
|
||||
address owner,
|
||||
|
||||
Reference in New Issue
Block a user