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
https://fisco-bcos-doc.readthedocs.io/zh-cn/latest/docs/sdk/java_sdk/event_sub.html#id7
几个示例中的Block参数是BigInteger,所以编译的时候报错。
// 全部Event fromBlock设置为 -1 params.setFromBlock(-1); //应该是==> params.setFromBlock(new BigInteger("-1")); // toBlock设置为-1,处理至最新区块继续等待新的区块 params.setToBlock(-1); //应该是==> params.setToBlock(new BigInteger("-1"));
The text was updated successfully, but these errors were encountered:
FISCO-BCOS#1795 合约事件推送的SampleCode中BlockNumber是BigInteger所以直接复制过来用会编译错误
7b6eee5
👍 欢迎提PR
Sorry, something went wrong.
我已经PR了~
#1796
Merge branch 'release-3' into FISCO-BCOS#1795
4c41fd0
No branches or pull requests
https://fisco-bcos-doc.readthedocs.io/zh-cn/latest/docs/sdk/java_sdk/event_sub.html#id7
几个示例中的Block参数是BigInteger,所以编译的时候报错。
The text was updated successfully, but these errors were encountered: