Skip to content

Commit

Permalink
fix: Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf committed Mar 18, 2024
1 parent 4a2c54f commit da573c7
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions certora/steward/harness/GhoStewardV2_Harness.sol
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

import {GhoStewardV2} from "../../../src/contracts/misc/GhoStewardV2.sol";

import {GhoStewardV2} from '../../../src/contracts/misc/GhoStewardV2.sol';

contract GhoStewardV2_Harness is GhoStewardV2 {
constructor(
Expand All @@ -11,12 +10,12 @@ contract GhoStewardV2_Harness is GhoStewardV2 {
address ghoToken,
address fixedRateStrategyFactory,
address riskCouncil
) GhoStewardV2 (owner,addressesProvider,ghoToken,fixedRateStrategyFactory,riskCouncil) {
}
) GhoStewardV2(owner, addressesProvider, ghoToken, fixedRateStrategyFactory, riskCouncil) {}

function get_gsmFeeStrategiesByRates(uint256 buyFee, uint256 sellFee) external view returns(address) {
return _gsmFeeStrategiesByRates[buyFee][sellFee];
function get_gsmFeeStrategiesByRates(
uint256 buyFee,
uint256 sellFee
) external view returns (address) {
return _gsmFeeStrategiesByRates[buyFee][sellFee];
}

}

0 comments on commit da573c7

Please sign in to comment.