Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kinrezC committed Apr 10, 2024
1 parent 94eba7a commit f318cce
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/CoveredCall/unit/Init.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ contract CoveredCallInitTest is CoveredCallSetUp {
uint256 rY = 1_000_000 ether;
uint256 price = 0.84167999326 ether;

bytes memory poolData = solver.prepareInitialPoolDataGivenY(
rY, price, ccParams
);
bytes memory poolData =
solver.prepareInitialPoolDataGivenY(rY, price, ccParams);

address[] memory tokens = new address[](2);
tokens[0] = address(tokenX);
Expand Down Expand Up @@ -100,7 +99,10 @@ contract CoveredCallInitTest is CoveredCallSetUp {
console2.log("rY", reserves[1]);
console2.log("acc", acc);
console2.log("price post swap", price);
console2.log("price gt defaultPricePoin11Rate", price > defaultPricePoin11Rate);
console2.log(
"price gt defaultPricePoin11Rate",
price > defaultPricePoin11Rate
);
}
}
}

0 comments on commit f318cce

Please sign in to comment.