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
lightwalletd uses the getrawmempool JSON-RPC method.
lightwalletd
getrawmempool
lightwalletd doesn't need witnessed mempool transaction IDs for Orchard (UnminedTxId). https://discord.com/channels/809218587167293450/809250822579028008/943326658042163270
UnminedTxId
The method is documented here: https://zcash.github.io/rpc/getrawmempool.html
lightwalletd always uses the no-argument format: https://github.com/zcash/lightwalletd/blob/master/common/mempool.go#L95
And only these fields are used by lightwalletd: https://github.com/zcash/lightwalletd/blob/master/common/mempool.go#L106
Response:
[ (json array of string) "transactionid" (string) The transaction id - this is a TXID, not a WTXID ,... ]
We plan to use jsonrpc_core with:
Here are examples of:
The text was updated successfully, but these errors were encountered:
Hey team! Please add your planning poker estimate with ZenHub @conradoplg @dconnolly @gustavovalverde @jvff @oxarbitrage @teor2345 @upbqdn
Sorry, something went wrong.
oxarbitrage
Successfully merging a pull request may close this issue.
Motivation
lightwalletd
uses thegetrawmempool
JSON-RPC method.Assumptions
lightwalletd
doesn't need witnessed mempool transaction IDs for Orchard (UnminedTxId
).https://discord.com/channels/809218587167293450/809250822579028008/943326658042163270
Required Fields
The method is documented here: https://zcash.github.io/rpc/getrawmempool.html
lightwalletd
always uses the no-argument format: https://github.com/zcash/lightwalletd/blob/master/common/mempool.go#L95And only these fields are used by
lightwalletd
: https://github.com/zcash/lightwalletd/blob/master/common/mempool.go#L106Response:
Tasks
lightwalletd
API Reference
We plan to use jsonrpc_core with:
Example Code
Here are examples of:
The text was updated successfully, but these errors were encountered: