这是我的简单合约
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();
答案 0 :(得分: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
}
答案 1 :(得分:0)
我如何处理此异常并了解事务不能 完整
在Solidity中有一个例外(throw
没有参数),这是&#34;气体&#34;。所以你的错误&#34;交易 已完成,但耗尽了气体。如果您知道事务哈希,则可以检查gasLimit
和gasUsed
。如果它们相等,那么您的交易可能*
已经耗尽了气体。查看更多信息here。
*
因为你提供的气体足够多,而且#34;正确&#34;交易需要。