@@ -11,12 +11,19 @@ pub use bitcoin::{
11
11
12
12
use serde:: Deserialize ;
13
13
14
+ /// It contains the value and scriptpubkey of a
15
+ /// previous transaction output that a transaction
16
+ /// input can reference.
14
17
#[ derive( Deserialize , Clone , Debug , PartialEq , Eq ) ]
15
18
pub struct PrevOut {
16
19
pub value : u64 ,
17
20
pub scriptpubkey : ScriptBuf ,
18
21
}
19
22
23
+ /// Represents the transaction input containing
24
+ /// a Previous output (or none if coinbase) and includes
25
+ /// the unlocking script, witness data, sequence number,
26
+ /// and a flag indicating if it is a coinbase input.
20
27
#[ derive( Deserialize , Clone , Debug , PartialEq , Eq ) ]
21
28
pub struct Vin {
22
29
pub txid : Txid ,
@@ -30,13 +37,15 @@ pub struct Vin {
30
37
pub is_coinbase : bool ,
31
38
}
32
39
40
+ /// Represents the transaction output containing a value and
41
+ /// a scriptpubkey.
33
42
#[ derive( Deserialize , Clone , Debug , PartialEq , Eq ) ]
34
43
pub struct Vout {
35
44
pub value : u64 ,
36
45
pub scriptpubkey : ScriptBuf ,
37
46
}
38
47
39
- ///Represents Transaction Status.
48
+ /// Represents Transaction Status.
40
49
#[ derive( Deserialize , Clone , Debug , PartialEq , Eq ) ]
41
50
pub struct TxStatus {
42
51
pub confirmed : bool ,
@@ -45,6 +54,10 @@ pub struct TxStatus {
45
54
pub block_time : Option < u64 > ,
46
55
}
47
56
57
+ /// It holds the block height, a Merkle path of
58
+ /// transaction IDs, and the position of the
59
+ /// transaction in the tree to verify its inclusion
60
+ /// in a block.
48
61
#[ derive( Deserialize , Clone , Debug , PartialEq , Eq ) ]
49
62
pub struct MerkleProof {
50
63
pub block_height : u32 ,
@@ -61,7 +74,7 @@ pub struct OutputStatus {
61
74
pub status : Option < TxStatus > ,
62
75
}
63
76
64
- ///A Struct represents the status of a block in the blockchain.
77
+ /// This Struct represents the status of a block in the blockchain.
65
78
/// `in_best_chain` - a boolean that shows whether the block is part of the main chain.
66
79
/// `height` - Optional field that shows the height of the block if block is in main chain.
67
80
/// `next_best` - Optional field that contains `BlockHash` of the next block that may represent
@@ -73,7 +86,7 @@ pub struct BlockStatus {
73
86
pub next_best : Option < BlockHash > ,
74
87
}
75
88
76
- ///Structure represents a complete transaction
89
+ /// Structure represents a complete transaction
77
90
#[ derive( Deserialize , Clone , Debug , PartialEq , Eq ) ]
78
91
pub struct Tx {
79
92
pub txid : Txid ,
@@ -89,14 +102,14 @@ pub struct Tx {
89
102
pub fee : u64 ,
90
103
}
91
104
92
- ///Returns timing information of a Block
105
+ /// Returns timing information of a Block
93
106
/// containg `timestamp` and `height` of block
94
107
#[ derive( Deserialize , Clone , Debug , PartialEq , Eq ) ]
95
108
pub struct BlockTime {
96
109
pub timestamp : u64 ,
97
110
pub height : u32 ,
98
111
}
99
- ///Provides a Summary of a Bitcoin block which includes
112
+ /// Provides a Summary of a Bitcoin block which includes
100
113
/// `BlockHash`, `BlockTime`, `previousblockhash`, `merkle_root`.
101
114
#[ derive( Debug , Clone , Deserialize , PartialEq , Eq ) ]
102
115
pub struct BlockSummary {
@@ -135,7 +148,7 @@ pub struct AddressTxsSummary {
135
148
}
136
149
137
150
impl Tx {
138
- ///Converts a transaction into a standard `Bitcoin transaction`.
151
+ /// Converts a transaction into a standard `Bitcoin transaction`.
139
152
pub fn to_tx ( & self ) -> Transaction {
140
153
Transaction {
141
154
version : transaction:: Version :: non_standard ( self . version ) ,
@@ -166,7 +179,7 @@ impl Tx {
166
179
}
167
180
}
168
181
169
- ///Checks Transaction status, returns a `BlockTime` struct contaning
182
+ /// Checks Transaction status, returns a `BlockTime` struct contaning
170
183
/// `height` and `timestamp` if transaction has been confirmed or
171
184
/// `None` otherwise.
172
185
pub fn confirmation_time ( & self ) -> Option < BlockTime > {
@@ -181,7 +194,7 @@ impl Tx {
181
194
}
182
195
}
183
196
184
- ///Takes Transaction as input
197
+ /// Takes Transaction as input
185
198
/// iterates through all the inputs present in the transaction
186
199
/// and checks for prevout field and creates a `TxOut` Struct for each input if it exists
187
200
/// then returns all optional TxOut values as a vector.
@@ -197,12 +210,12 @@ impl Tx {
197
210
} )
198
211
. collect ( )
199
212
}
200
- ///Takes Transaction as input and returns
213
+ /// Takes Transaction as input and returns
201
214
/// the `Weight instance` of the weight present in Transaction.
202
215
pub fn weight ( & self ) -> Weight {
203
216
Weight :: from_wu ( self . weight )
204
217
}
205
- ///Takes Transaction as input and returns
218
+ /// Takes Transaction as input and returns
206
219
/// the `Amount instance` of the satoshis present in Transaction.
207
220
pub fn fee ( & self ) -> Amount {
208
221
Amount :: from_sat ( self . fee )
0 commit comments