Skip to content

Commit

Permalink
chore: fixed the contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
SwatiEY committed Sep 4, 2024
1 parent c726e13 commit 8d52c8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/contracts/internalFunctionCall-return.zol
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ contract Assign {
function remove(secret uint256 value, uint256 value1) public {
uint256 c = add(value, value1);
b += c + 1;
a -= value + value1;
a -= value1;
}
}
2 changes: 1 addition & 1 deletion test/contracts/internalFunctionCall-return2.zol
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ contract Assign {

function remove(secret uint256 value, uint256 value1) public {
uint256 c = add(value, value1);
a -= value + c;
a -= c;
}
}

0 comments on commit 8d52c8d

Please sign in to comment.