Contract-Debugging

如何將我的預眾籌資金發送到眾籌合約?

  • October 10, 2017

我正在進行預眾籌和眾籌,預眾籌結束後如何將乙太幣從第一個發送到第二個?這是我的腳本:

//發送到眾籌

if(receiver_address.send(amount_in_Wei)){

//發送成功

} 別的 {

// 發送失敗 } }


但乙太坊錢包編譯器說:無法編譯原始碼。

預期的導入指令或契約定義。if(receiver_address.send(amount_in_Wei)){ ^

怎麼了?謝謝!!!!

看看這裡,在文件的末尾:

 /**
  * Set the target crowdsale where we will move presale funds when the crowdsale opens.
  */
 function setCrowdsale(Crowdsale _crowdsale) public onlyOwner {
    crowdsale = _crowdsale;
 }

我正在使用這樣的程式碼:

if (!wallet.send(msg.value)) {
   ...
}

它編譯沒有錯誤。你在使用編譯指示嗎?

pragma solidity ^0.4.11;

嘗試在程式碼的第一行使用它。

引用自:https://ethereum.stackexchange.com/questions/17431