Skip to content
New issue

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

update bcos-cpp-sdk #152

Merged
merged 1 commit into from
Mar 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ JNIEXPORT jstring JNICALL Java_org_fisco_bcos_sdk_jni_rpc_RpcServiceJniObj_sendT
context->jcallback = env->NewGlobalRef(jcallback);
context->jvm = jvm;

const char* respClassName = "org/fisco/bcos/sdk/jni/common/Response";
bcos_sdk_c_find_jclass(env, respClassName);

const char* tx_hash = bcos_rpc_service_send_transaction(sdk, keypair, group, node, to, data,
len, abi, attr, extra_data, on_receive_tars_rpc_response, context);

Expand Down
4 changes: 2 additions & 2 deletions cmake/config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ hunter_config(bcos-boostssl

hunter_config(bcos-cpp-sdk
VERSION 3.3.0-local
URL https://${URL_BASE}/FISCO-BCOS/bcos-cpp-sdk/archive/6fe818d25ba90252a8aa70da40f822871592375e.tar.gz
SHA1 66c020bb0a5fbddc02fc1c75663607f02cf1a92d
URL https://${URL_BASE}/FISCO-BCOS/bcos-cpp-sdk/archive/58f0efc1ad08e740955d0a389833b962b63f5644.tar.gz
SHA1 0d63f5d4cf6384d9c34380c7c3d337ca4df8a217
)

hunter_config(range-v3 VERSION 1.0.0
Expand Down