Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Fix swap/swapWithReferral/swapMulti return value #79

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions contracts/OneSplitAudit.sol
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ contract OneSplitAudit is IOneSplit, Ownable {
uint256[] memory flagsArray = new uint256[](1);
flagsArray[0] = flags;

swapWithReferralMulti(
return swapWithReferralMulti(
tokens,
amount,
minReturn,
Expand All @@ -256,7 +256,7 @@ contract OneSplitAudit is IOneSplit, Ownable {
uint256[] memory distribution,
uint256[] memory flags
) public payable returns(uint256) {
swapWithReferralMulti(
return swapWithReferralMulti(
tokens,
amount,
minReturn,
Expand Down