0

我试图将我的 sellPrice 设置为 0.01 并且我的 buyPrice 等于 0.02 时遇到问题。我的合约已部署,后来我使用 setPrices 函数设置代币价格。我加上双引号“10000000000000000”和“20000000000000000”,因为如果我不加引号就会抛出异常。

购买功能:

/// @notice Buy tokens from contract by sending ether
function buy() payable public {
    uint amount = msg.value / buyPrice;               // calculates the amount
    _transfer(this, msg.sender, amount);              // makes the transfers
}

在我的 web3 代码上:

$('#buy').click(function(){
Compra.buy({
  gas: 300000,
  from: web3.eth.coinbase,
  value: 20000000000000000
},function(error,res){
console.log(res);
if(!error){
    if(res.blockHash != $("#insTrans").html())
        $("#loader").hide();

    $("#insTrans").html("Block hash: " + res.blockHash)
}else{
    $("#loader").hide();
    console.log(error);
}
});
});

当 buy() 成功时,将 0.000000000000000001 的代币添加到我的钱包中,我希望钱包上有 1 个代币。我的意思是 0.02 = 1 个我的代币。

有人可以帮助我吗?我很困在这里。

谢谢。

4

1 回答 1

0

这是因为您使用的是小数。如果您使用标准化的 18 位十进制格式,您需要将买入价格乘以 180(或 10**十进制),如上述评论中所述。

正如@smarx 上面所说,您可以将代码更改为

msg.value / buyPrice * 10**decimals
于 2018-04-02T17:11:27.117 回答