We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7f3370 commit 158e7a0Copy full SHA for 158e7a0
client/src/client.rs
@@ -34,8 +34,10 @@ use crate::queryable;
34
/// crate-specific Error type;
35
pub type Result<T> = result::Result<T, Error>;
36
37
+/// Outpoint that serializes and deserializes as a map, instead of a string,
38
+/// for use as RPC arguments
39
#[derive(Clone, Debug, Serialize, Deserialize)]
-struct JsonOutPoint {
40
+pub struct JsonOutPoint {
41
pub txid: bitcoin::Txid,
42
pub vout: u32,
43
}
0 commit comments