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.
MerkleProof
OutputStatus
pub
1 parent eb03642 commit 692c744Copy full SHA for 692c744
src/api.rs
@@ -42,17 +42,17 @@ pub struct TxStatus {
42
43
#[derive(Deserialize, Clone, Debug, PartialEq)]
44
pub struct MerkleProof {
45
- block_height: u32,
46
- merkle: Vec<Txid>,
47
- pos: usize,
+ pub block_height: u32,
+ pub merkle: Vec<Txid>,
+ pub pos: usize,
48
}
49
50
51
pub struct OutputStatus {
52
- spent: bool,
53
- txid: Option<Txid>,
54
- vin: Option<u64>,
55
- status: Option<TxStatus>,
+ pub spent: bool,
+ pub txid: Option<Txid>,
+ pub vin: Option<u64>,
+ pub status: Option<TxStatus>,
56
57
58
#[derive(Deserialize, Clone, Debug)]
0 commit comments