无法将令牌存入智能合约

时间:2019-06-19 10:12:18

标签: blockchain ethereum smartcontracts

我是一名目前正在研究区块链的学生,目前存在无法将代币存入智能合约的问题。我目前正在使用薄雾,并使用geth作为以太坊客户端和松露来部署我的智能合约。有什么办法可以解决问题?任何答案将不胜感激

Picture above shows that my account send to my smart contract address,

However smart contract ether is not incremented ? Why so

非常感谢您

1 个答案:

答案 0 :(得分:0)

直接将ETH发送到智能合约时,合约的后备功能需要为payable

contract Test {
    function() payable { // do something.. }
}