12 lines
249 B
Solidity
12 lines
249 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.6.12;
|
|
|
|
import { ITornadoInstance } from "./TornadoInstance.sol";
|
|
|
|
interface IFeeManager {
|
|
function instanceFeeWithUpdate(
|
|
ITornadoInstance _instance
|
|
) external returns (uint160);
|
|
}
|