File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
mithril-aggregator/src/database/provider/block_range_root
mithril-signer/src/database/provider/block_range_root Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,6 @@ impl<'client> Provider<'client> for GetBlockRangeRootProvider<'client> {
29
29
let aliases = SourceAlias :: new ( & [ ( "{:block_range_root:}" , "block_range_root" ) ] ) ;
30
30
let projection = Self :: Entity :: get_projection ( ) . expand ( aliases) ;
31
31
32
- format ! ( "select {projection} from block_range_root where {condition} order by rowid " )
32
+ format ! ( "select {projection} from block_range_root where {condition} order by start, end " )
33
33
}
34
34
}
Original file line number Diff line number Diff line change @@ -29,6 +29,6 @@ impl<'client> Provider<'client> for GetBlockRangeRootProvider<'client> {
29
29
let aliases = SourceAlias :: new ( & [ ( "{:block_range_root:}" , "block_range_root" ) ] ) ;
30
30
let projection = Self :: Entity :: get_projection ( ) . expand ( aliases) ;
31
31
32
- format ! ( "select {projection} from block_range_root where {condition} order by rowid " )
32
+ format ! ( "select {projection} from block_range_root where {condition} order by start, end " )
33
33
}
34
34
}
You can’t perform that action at this time.
0 commit comments