我有以下功能的合同:
function supply () constant returns (uint sup) {
sup = 100;
return sup;
}
跑步
var token = web3.eth.contract(contractAbi).at(contractAddress);
token.supply.call()
返回:
{ [String: '0'] s: 1, e: 0, c: [ 0 ] }
这里有什么问题?我在合同中的所有功能都会发生这种情况。
谢谢!