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
send_transaction
The RPC method send_transaction:
send_transaction(tx_hash, outputs_validator)
send_transaction(tx_hash)
So, with CKB SDK, for example, rust SDK, we have to clarify which node our app was connected: a full node or a light client.
Could light client just defines the methods to be send_transaction(tx_hash, _dummy_string_drop_directly), so the RPC method could be unified.
send_transaction(tx_hash, _dummy_string_drop_directly)
It's useful for an abstract client, which doesn't care about which kind of endpoint it connected, a full node or a light client.
Ref: nervosnetwork/ckb-sdk-rust#101.
The text was updated successfully, but these errors were encountered:
Will the unification also support the RBF transaction feature?
Sorry, something went wrong.
No branches or pull requests
Description
The RPC method
send_transaction
:send_transaction(tx_hash, outputs_validator)
.send_transaction(tx_hash)
.So, with CKB SDK, for example, rust SDK, we have to clarify which node our app was connected: a full node or a light client.
Could light client just defines the methods to be
send_transaction(tx_hash, _dummy_string_drop_directly)
, so the RPC method could be unified.It's useful for an abstract client, which doesn't care about which kind of endpoint it connected, a full node or a light client.
Ref: nervosnetwork/ckb-sdk-rust#101.
The text was updated successfully, but these errors were encountered: