4

我想向智能合约地址发送一些 ETH

Test.deployed().then(function(instance) {return instance.contribute("0x1e0c326f4f24b5e9f5d42d695f48983d0a72b240", {from:web3.eth.accounts[0],value:10});})

但我总是得到

truffle(development)> Test.deployed().then(function(instance) {return instance.contribute("0x1e0c326f4f24b5e9f5d42d695f48983d0a72b240", {from:web3.eth.accounts[0],value:10});})
TypeError: instance.contribute is not a function
    at evalmachine.<anonymous>:1:61
    at process._tickDomainCallback (internal/process/next_tick.js:135:7)
truffle(development)> truffle(development)>

我正在使用最新版本的松露,所以版本 4.x

同样的问题

Test.deployed().then(function(instance) {return instance.getElements.call();})

更新

contract MyContract Common {

  function setMultisigWallet(address newMultisigWallet) public onlyOwner {
    multisigWallet = newMultisigWallet;
  }

  function() external payable {
    executeSale();
  }

}
4

1 回答 1

0

通过 将交易直接发送到合约instance.sendTransaction()这与所有可用的合约实例函数一样被承诺,并且具有与web3.eth.sendTransaction相同的 API,但没有回调。如果未指定,该to值将自动为您填写。

于 2019-11-12T07:42:14.910 回答