@@ -81,15 +81,6 @@ pub(crate) struct MainchainTxOutputRow {
81
81
pub tx_inputs : Vec < String > ,
82
82
}
83
83
84
- #[ derive( Debug , Clone , sqlx:: FromRow , PartialEq ) ]
85
- pub ( crate ) struct MintAction {
86
- pub tx_hash : [ u8 ; 32 ] ,
87
- pub asset_name : Vec < u8 > ,
88
- pub block_no : BlockNumber ,
89
- pub tx_index_in_block : i32 ,
90
- pub redeemer : Option < DbDatum > ,
91
- }
92
-
93
84
#[ derive( Debug , Clone , sqlx:: FromRow , PartialEq ) ]
94
85
pub ( crate ) struct StakePoolEntry {
95
86
pub pool_hash : [ u8 ; 28 ] ,
@@ -152,18 +143,6 @@ impl<'r> Decode<'r, Postgres> for NativeTokenAmount {
152
143
}
153
144
}
154
145
155
- #[ derive( Debug , Clone , sqlx:: FromRow , PartialEq ) ]
156
- pub ( crate ) struct TxPosition {
157
- pub block_number : BlockNumber ,
158
- pub index : TxIndexInBlock ,
159
- }
160
-
161
- impl Default for TxPosition {
162
- fn default ( ) -> Self {
163
- Self { block_number : BlockNumber ( 0 ) , index : TxIndexInBlock ( 0 ) }
164
- }
165
- }
166
-
167
146
#[ derive( Debug , Clone , sqlx:: FromRow , PartialEq ) ]
168
147
pub ( crate ) struct BlockTokenAmount {
169
148
pub block_hash : [ u8 ; 32 ] ,
0 commit comments