Lets say I have the following contract.
contract sendEther {
function sendEther() payable {
address to = <Address2>;
to.send(this.balance);
}
}
If address1 deploys this contract with 100 ether. This contract deployment transaction will be recorded on the blockchain. However, the .send function results in an internal transaction. Where will this internal transaction sending the ether to address2 be recorded ?