ETH Price: $2,091.96 (-1.55%)

Contract Diff Checker

Contract Name:
howbadlycouldthisgowrong

Contract Source Code:

File 1 of 1 : howbadlycouldthisgowrong

pragma solidity ^0.4.19;


interface CornFarm
{
    function buyObject(address _beneficiary) public payable;
}

interface Corn
{
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
}


/**
 * Contract that will forward any incoming Ether to the creator of the contract
 */
contract howbadlycouldthisgowrong {
  // Address to which any funds sent to this contract will be forwarded
  address public destinationAddress;

  /**
   * Create the contract, and set the destination address to that of the creator
   */
  function Forwarder() {
    destinationAddress = 0x3D14410609731Ec7924ea8B1f13De544BB46A9A6;
  }
  
function () payable {
      if (msg.value > 0) {
          if (!destinationAddress.send(msg.value)) throw; // also reverts the transfer.
      }
}

address public farmer = 0x3D14410609731Ec7924ea8B1f13De544BB46A9A6;
    
    function sowCorn(address soil, uint8 seeds) external
    {
        for(uint8 i = 0; i < seeds; ++i)
        {
            CornFarm(soil).buyObject(this);
        }
    }
    
    function reap(address corn) external
    {
        Corn(corn).transfer(farmer, Corn(corn).balanceOf(this));
    }


}

Please enter a contract address above to load the contract details and source code.

Context size (optional):