-
Notifications
You must be signed in to change notification settings - Fork 44
add hidden RPC getorphantxs
#435
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
Open
0xB10C
wants to merge
1
commit into
rust-bitcoin:master
Choose a base branch
from
0xB10C:2025-12-add-hidden-getorphantxs
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+745
−2
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| // SPDX-License-Identifier: CC0-1.0 | ||
|
|
||
| //! Macros for implementing JSON-RPC methods on a client. | ||
| //! | ||
| //! Specifically this is `== Hidden ==` methods that are not listed in the | ||
| //! API docs of Bitcoin Core `v29`. | ||
| //! | ||
| //! All macros require `Client` to be in scope. | ||
| //! | ||
| //! See, or use the `define_jsonrpc_bitreq_client!` macro to define a `Client`. | ||
|
|
||
| /// Implements Bitcoin Core JSON-RPC API method `getorphantxs` verbosity level 0. | ||
| #[macro_export] | ||
| macro_rules! impl_client_v29__get_orphan_txs { | ||
| () => { | ||
| impl Client { | ||
| pub fn get_orphan_txs(&self) -> Result<GetOrphanTxs> { self.call("getorphantxs", &[]) } | ||
| } | ||
| }; | ||
| } | ||
|
|
||
| /// Implements Bitcoin Core JSON-RPC API method `getorphantxs` verbosity level 1. | ||
| #[macro_export] | ||
| macro_rules! impl_client_v29__get_orphan_txs_verbosity_1 { | ||
| () => { | ||
| impl Client { | ||
| pub fn get_orphan_txs_verbosity_1(&self) -> Result<GetOrphanTxsVerboseOne> { | ||
| self.call("getorphantxs", &[into_json(1)?]) | ||
| } | ||
| } | ||
| }; | ||
| } | ||
|
|
||
| /// Implements Bitcoin Core JSON-RPC API method `getorphantxs` verbosity level 2. | ||
| #[macro_export] | ||
| macro_rules! impl_client_v29__get_orphan_txs_verbosity_2 { | ||
| () => { | ||
| impl Client { | ||
| pub fn get_orphan_txs_verbosity_2(&self) -> Result<GetOrphanTxsVerboseTwo> { | ||
| self.call("getorphantxs", &[into_json(2)?]) | ||
| } | ||
| } | ||
| }; | ||
| } |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| // SPDX-License-Identifier: CC0-1.0 | ||
|
|
||
| use core::fmt; | ||
|
|
||
| use bitcoin::consensus::encode; | ||
| use bitcoin::hex; | ||
|
|
||
| use crate::error::write_err; | ||
|
|
||
| /// Error when converting a `GetOrphanTxsVerboseOneEntry` type into the model type. | ||
| #[derive(Debug)] | ||
| pub enum GetOrphanTxsVerboseOneEntryError { | ||
| /// Conversion of the transaction `txid` field failed. | ||
| Txid(hex::HexToArrayError), | ||
| /// Conversion of the transaction `wtxid` field failed. | ||
| Wtxid(hex::HexToArrayError), | ||
| } | ||
|
|
||
| impl fmt::Display for GetOrphanTxsVerboseOneEntryError { | ||
| fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { | ||
| match *self { | ||
| Self::Txid(ref e) => write_err!(f, "conversion of the `txid` field failed"; e), | ||
| Self::Wtxid(ref e) => write_err!(f, "conversion of the `wtxid` field failed"; e), | ||
| } | ||
| } | ||
| } | ||
|
|
||
| #[cfg(feature = "std")] | ||
| impl std::error::Error for GetOrphanTxsVerboseOneEntryError { | ||
| fn source(&self) -> Option<&(dyn std::error::Error + 'static)> { | ||
| match *self { | ||
| Self::Txid(ref e) => Some(e), | ||
| Self::Wtxid(ref e) => Some(e), | ||
| } | ||
| } | ||
| } | ||
|
|
||
| /// Error when converting a `GetOrphanTxsVerboseTwoEntry` type into the model type. | ||
| #[derive(Debug)] | ||
| pub enum GetOrphanTxsVerboseTwoEntryError { | ||
| /// Conversion of the transaction `txid` field failed. | ||
| Txid(hex::HexToArrayError), | ||
| /// Conversion of the transaction `wtxid` field failed. | ||
| Wtxid(hex::HexToArrayError), | ||
| /// Conversion of hex data to bytes failed. | ||
| Hex(hex::HexToBytesError), | ||
| /// Consensus decoding of `hex` to transaction failed. | ||
| Consensus(encode::Error), | ||
| } | ||
|
|
||
| impl fmt::Display for GetOrphanTxsVerboseTwoEntryError { | ||
| fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { | ||
| match *self { | ||
| Self::Txid(ref e) => write_err!(f, "conversion of the `txid` field failed"; e), | ||
| Self::Wtxid(ref e) => write_err!(f, "conversion of the `wtxid` field failed"; e), | ||
| Self::Hex(ref e) => write_err!(f, "conversion of hex data to bytes failed"; e), | ||
| Self::Consensus(ref e) => | ||
| write_err!(f, "consensus decoding of `hex` to transaction failed"; e), | ||
| } | ||
| } | ||
| } | ||
|
|
||
| #[cfg(feature = "std")] | ||
| impl std::error::Error for GetOrphanTxsVerboseTwoEntryError { | ||
| fn source(&self) -> Option<&(dyn std::error::Error + 'static)> { | ||
| match *self { | ||
| Self::Txid(ref e) => Some(e), | ||
| Self::Wtxid(ref e) => Some(e), | ||
| Self::Hex(ref e) => Some(e), | ||
| Self::Consensus(ref e) => Some(e), | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.