// 可以getError()然后在getMessage()得到错误信息
EthSendTransaction ethSendTransaction = request1.send();
if (ethSendTransaction.hasError()) {
result += "ethSendTransactoin has error:" +ethSendTransaction.getError().toString();
result += ethSendTransaction.getError().getMessage();
}