Skip to content

Commit

Permalink
fix: Remove unneeded flag
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf committed Apr 5, 2023
1 parent 9079b79 commit 2870632
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/ProtocolV3TestBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,7 @@ contract ProtocolV3TestBase is CommonTestBase {
);
string memory key = vm.toString(address(strategy));
vm.serializeAddress(key, 'address', address(strategy));
bool defaultIR = false;
try strategy.getBaseStableBorrowRate() returns (uint256 baseStableBorrowRate) {
defaultIR = true;
vm.serializeString(key, 'baseStableBorrowRate', vm.toString(baseStableBorrowRate));
vm.serializeString(key, 'stableRateSlope1', vm.toString(strategy.getStableRateSlope1()));
vm.serializeString(key, 'stableRateSlope2', vm.toString(strategy.getStableRateSlope2()));
Expand Down

0 comments on commit 2870632

Please sign in to comment.