Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/strategies/crosschain/pendle/PendleProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ contract PendleProxy {
}

/**
* @notice Update optional boost fee settins
* @notice Update optional boost fee settings
* @param _boostFeeBips Boost fee bips, check BIPS_DIVISOR
*/
function updateBoostFee(uint256 _boostFeeBips) external onlyDev {
Expand Down
2 changes: 1 addition & 1 deletion contracts/strategies/crosschain/wombat/WombatProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ contract WombatProxy {
}

/**
* @notice Update additional/optional boost fee settins
* @notice Update additional/optional boost fee settings
* @param _boostFeeBips Boost fee bips, check BIPS_DIVISOR
* @param _minBoostAmount Minimum amount of WOM to create a new lock position
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/forge-std/src/StdJson.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import {VmSafe} from "./Vm.sol";
// Contract contract = new Contract();
// json.serialize("contractAddress", address(contract));
// json = json.serialize("deploymentTimes", uint(1));
// // store the stringified JSON to the 'json' variable we have been using as a key
// // as we won't need it any longer
// store the stringified JSON to the 'json' variable we have been using as a key
// as we won't need it any longer
// string memory json2 = "finalArtifact";
// string memory final = json2.serialize("depArtifact", json);
// final.write("<some_path>");
Expand Down