Description
The RPC method send_transaction:
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.