web3.js 调用传递函数 return Solidity 函数的参数数量无效

web3.js calling transfer function return Invalid number of arguments to Solidity function

我目前正在使用 web3.js 在表单提交上使用一个函数,即 transfer(address _to, uint256 _value)

我可以调用合约函数,但我得到错误:尝试使用传递函数的 Solidity 函数的参数数量无效,同时提供地址和代币数量。

这是我的部分代码:

function sendtoken(to, amount){

    var to = to; 
    var amount = amount; 
    var settx = contract.transfer(to,amount);

    return settx;
}

正在调用它(别担心,我的合约在合约 var 中正确调用

var formData = getFormObj("tokeform");

console.log(formData.destinationtoke);
console.log(formData.amounttoke);
var tx = sendtoken(destinationtoke, amounttoke);
var tx = JSON.stringify(tx, null, "  ");

console.log(tx);

这是我收到错误的地方。这里的合约函数:

function transfer(address _to, uint256 _value) {
    if (genesisAddress[_to]) throw;

    if (balances[msg.sender] < _value) throw;

    if (balances[_to] + _value < balances[_to]) throw;

    if (genesisAddress[msg.sender]) {
        minedBlocks = block.number - initialBlockCount;
        if(minedBlocks % 2 != 0){
            minedBlocks = minedBlocks - 1;
        }

        if (minedBlocks < 23652000) {
            availableAmount = rewardPerBlockPerAddress*minedBlocks;
            totalMaxAvailableAmount = initialSupplyPerAddress - availableAmount;
            availableBalance = balances[msg.sender] - totalMaxAvailableAmount;
            if (_value > availableBalance) throw;
        }
    }
    balances[msg.sender] -= _value;
    balances[_to] += _value;
    Transfer(msg.sender, _to, _value);
}

知道为什么会出现此错误吗?我似乎在提供正确的元素。我根本不习惯 web3.js,我想我可以调用这个函数,就像我在当前合同中与其他人一样调用这个函数 return 正确的数据,作为令牌和汇率的余额。

console.log(formData.destinationtoke);
console.log(formData.amounttoke);
var tx = sendtoken(destinationtoke, amounttoke);

收件人:

console.log(formData.destinationtoke);
console.log(formData.amounttoke);
var tx = sendtoken(formData.destinationtoke, formData.amounttoke);

魔术,正在返回数据