File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
mithril-aggregator/src/database/provider/cardano_transaction
mithril-signer/src/database/provider/cardano_transaction Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ impl<'client> Provider<'client> for GetCardanoTransactionProvider<'client> {
87
87
let aliases = SourceAlias :: new ( & [ ( "{:cardano_tx:}" , "cardano_tx" ) ] ) ;
88
88
let projection = Self :: Entity :: get_projection ( ) . expand ( aliases) ;
89
89
90
- format ! ( "select {projection} from cardano_tx where {condition} order by rowid " )
90
+ format ! ( "select {projection} from cardano_tx where {condition} order by block_number, transaction_hash " )
91
91
}
92
92
}
93
93
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ impl<'client> Provider<'client> for GetCardanoTransactionProvider<'client> {
69
69
let aliases = SourceAlias :: new ( & [ ( "{:cardano_tx:}" , "cardano_tx" ) ] ) ;
70
70
let projection = Self :: Entity :: get_projection ( ) . expand ( aliases) ;
71
71
72
- format ! ( "select {projection} from cardano_tx where {condition} order by rowid " )
72
+ format ! ( "select {projection} from cardano_tx where {condition} order by block_number, transaction_hash " )
73
73
}
74
74
}
75
75
You can’t perform that action at this time.
0 commit comments