0

这是我的简单合同

contract Test {
    /* This creates an array with all balances */
    mapping (address => uint256) public balanceOf;

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function Test(
        uint256 initialSupply
        ) {
        balanceOf[msg.sender] = initialSupply;              // Give the creator all initial tokens
    }

    /* Send coins */
    function transfer(address _to, uint256 _value) {
        if (balanceOf[msg.sender] < _value) throw;           // Check if the sender has enough
        if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows
        balanceOf[msg.sender] -= _value;                     // Subtract from the sender
        balanceOf[_to] += _value;                            // Add the same to the recipient
    }

function gettokenBalance(address to)constant returns (uint256){
          return balanceOf[to];
       }
}

当我将超过初始供应的代币转移到另一个帐户时,该函数transfer应该引发异常。

我如何处理此异常并了解事务无法完成。我正在使用 web3j 并调用函数传输,例如

Test test = Test.load(contractObj.getContractAddress(), web3j, credentials, gasprice,gaslimit);

TransactionReceipt balanceOf = test.transfer(new Address(address), transferBalance).get(); 
4

2 回答 2

0

我从未使用过 web3js,但您可以尝试使用 try-catch:

try{
  Test test = Test.load(contractObj.getContractAddress(), web3j, credentials, gasprice,gaslimit);

  TransactionReceipt balanceOf = test.transfer(new Address(address), transferBalance).get(); 
} catch (Exception e){
  // log you exception
}
于 2017-06-27T15:23:10.717 回答
0

我如何处理此异常并了解事务无法完成

Solidity中有一个例外(throw没有参数),即“没气了”。所以你的“错误”交易已经完成,但是它用完了gas。如果您知道交易哈希,您可以检查gasLimitgasUsed。如果它们相等,则您的交易可能已*用完 gas。在此处查看更多信息。

*鉴于您提供了足够多的“正确”交易所需的气体。

于 2017-07-02T16:27:45.607 回答