Skip to content

Commit

Permalink
fix: adjust some bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
1kresh committed Dec 9, 2024
1 parent 6747333 commit f8e9b50
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions test/integration/SymbioticCollateralBindings.sol
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ contract SymbioticCollateralBindings is Test {
address defaultCollateral,
uint256 amount
) internal virtual returns (uint256 collateralAmount) {
_deposit_SymbioticCollateral(who, defaultCollateral, who, amount);
collateralAmount = _deposit_SymbioticCollateral(who, defaultCollateral, who, amount);
}

function _deposit_SymbioticCollateral(
Expand Down Expand Up @@ -67,7 +67,7 @@ contract SymbioticCollateralBindings is Test {
bytes32 r,
bytes32 s
) internal virtual returns (uint256 collateralAmount) {
_deposit_SymbioticCollateral(who, defaultCollateral, who, amount, deadline, v, r, s);
collateralAmount = _deposit_SymbioticCollateral(who, defaultCollateral, who, amount, deadline, v, r, s);
}

function _withdraw_SymbioticCollateral(
Expand Down

0 comments on commit f8e9b50

Please sign in to comment.