You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Slither does not convert correctly return with tuple expression:
contract Test{
function test(uint a, uint b) returns(uint, uint){
return(a,b);
}
function test2(uint a) returns(uint){
return(a);
}
function test3(uint a) returns(uint){
return a;
}
}
Only test3 is correctly translated to slithir:
Function test(uint256,uint256)
Expression: (a,b)
IRs:
Function test2(uint256)
Expression: (a)
IRs:
Function test3(uint256)
Expression: a
IRs:
RETURN a
The text was updated successfully, but these errors were encountered:
Slither does not convert correctly return with tuple expression:
Only
test3
is correctly translated to slithir:The text was updated successfully, but these errors were encountered: