Closed as not planned
Description
I have this contracts:
pragma solidity ^0.4.11;
contract test_receive
{
// this contract is needed only for the other contract to compile - it's never actually called
function receive(address, uint256, bytes) returns (bool, uint256)
{
return (false, 222);
}
}
contract test_cast
{
uint public test_uint;
bool public test_bool;
function test(address addr, uint256 n) returns (uint256)
{
bytes memory _data;
var (_success, _back) = test_receive(addr).receive(addr, n, _data);
require(_success);
test_uint = _back;
test_bool = _success;
return _back;
}
}
contract dummy
{
function() payable { }
}
I've compiled contracts and deployed test_cast
at this address on Rinkeby: 0x330D0f8cc94758F26DD299bb803Fe63Fef76F726.
I've deployed dummy
here on Rinkeby: 0x66855c513B861b617aD806C9d4CC35661087dda3
I've called test
at test_cast
with this parameters: 0x330d0f8cc94758f26dd299bb803fe63fef76f726
, 124
.
Call tx: https://rinkeby.etherscan.io/tx/0x88833366a0ca22e1aacdb64c7d2e3aefa54e7f719782e36a5fbde1a078c482cd
In the result of the call test_uint
became 7477059611491291558618241337412310647290875865618134341354521175411004538880
and test_bool
became true
.
I think that if the fallback function doesn't return any values then it should not return values depending on my input.