-
Notifications
You must be signed in to change notification settings - Fork 40
jsonrpc: Depend on bitreq
#399
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
Conversation
11d27c8 to
2013b42
Compare
2ea4b01 to
11d9d3e
Compare
|
Could address #406 as part of this PR. The two cases left I can see are: |
99c948c Re-implement json-using-serde feature (Tobin C. Harding) 1251953 Replace stale docs reference to minreq (Tobin C. Harding) Pull request description: This feature was removed when we gutted `minreq` after forking it. Turns out we need it to be able to use `bitreq` in `jsonrpc`. Re-implement the feature by copying code from `minreq`. Close: rust-bitcoin#393 ACKs for top commit: oleonardolima: tACK 99c948c jamillambert: ACK 99c948c Tree-SHA512: 2e22881566fd3d75e0edb70567dac0b1ed9ce66720511dcead888b2b7686fc89fb1f6bce3bd490f91997e9ade88b0665b00679c79bcef35205c6ce1117306faf
Stale name since we renamed the crate to `bitreq`. Fix a few instances of `s/minreq/bitreq` missed when forking.
Missed during crate rename.
11d9d3e to
caf7145
Compare
|
grepped for |
Should have been done during the minreq -> bitreq rename.
We just forked `minreq` into this repository to create an HTTP crate that is specifically designed to be used by Bitcoin projects. As such we called it `bitreq`. Depend on the local `bitreq` crate instead of `minreq`. Done directly in `node` and `jsonrpc`. Indirectly in `client`, including rename of a million macros that have `minreq` in the name.
caf7145 to
4ef980d
Compare
jamillambert
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 4ef980d
We just forked
minreqinto this repository to create an HTTP crate that is specifically designed to be used by Bitcoin projects. As such we called itbitreq.Depend on the local
bitreqcrate instead ofminreq.