forked from rust-bitcoin/rust-bitcoincore-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated to use bitcoinsv crate v0.2.2. - Using verbosity level 2 for get_block_header_info to provide more information. - Re-organized list of functions in RpcApi to put them in alphabetical order. - Added example to client library main page.
- Loading branch information
1 parent
004e08a
commit 5295ce0
Showing
5 changed files
with
14 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bitcoinsv-rpc" | ||
version = "0.19.1" | ||
version = "0.19.2" | ||
authors = [ | ||
"Daniel Connolly <[email protected]>" | ||
] | ||
|
@@ -17,7 +17,7 @@ name = "bitcoinsv_rpc" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
bitcoinsv-rpc-json = { version = "0.19.0", path = "../json" } | ||
bitcoinsv-rpc-json = { version = "0.19.2", path = "../json" } | ||
log = "0.4.5" | ||
jsonrpc = { version = "0.16.0", features = ["minreq_http"]} | ||
serde = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bitcoinsv-rpc-json" | ||
version = "0.19.1" | ||
version = "0.19.2" | ||
authors = [ | ||
"Daniel Connolly <[email protected]>", | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters