We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sdk1.0.3
1、TxService.getTransactionsCountByContractAddr返回的json不应该用TxResponse序列化
@Override public Request<TxResponse> getTransactionsCountByContractAddr(String from, String to, String contractAddress, boolean txExtra, int... nodeIds) { TxRequest txRequest = new TxRequest(TX_PREFIX + "getTransactionsCountByContractAddr", providerManager, TxResponse.class, nodeIds); HashMap<String, Object> params = new HashMap<>(); params.put("from", from); params.put("to", to); params.put("address", contractAddress); params.put("txExtra", txExtra); txRequest.addParams(params); return txRequest; }
2、TxService.getNextPageTransactions 执行栈溢出
@Override public Request<TxResponse> getNextPageTransactions(BigInteger blkNumber, BigInteger txIndex, BigInteger minBlkNumber, BigInteger maxBlkNumber, BigInteger separated, BigInteger pageSize, boolean containCurrent, String address, int... nodeIds) { return getNextPageTransactions(blkNumber, txIndex, minBlkNumber, maxBlkNumber, separated, pageSize, containCurrent, address, nodeIds); }
3、NodeStateResponse.NodeState 无hostname字段,返回的json有该字段(hyperchain1.8版本)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
sdk1.0.3
1、TxService.getTransactionsCountByContractAddr返回的json不应该用TxResponse序列化
2、TxService.getNextPageTransactions 执行栈溢出
3、NodeStateResponse.NodeState 无hostname字段,返回的json有该字段(hyperchain1.8版本)
The text was updated successfully, but these errors were encountered: