Skip to content

Commit

Permalink
Cleanings
Browse files Browse the repository at this point in the history
  • Loading branch information
tjayrush committed Nov 28, 2024
1 parent 98be3f8 commit d387ed0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions code_gen/generated/codebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"cache_by": "range",
"cache_type": "cacheable",
"attributes": "wantsSearch|wantsEnter|wantsModify",
"sorts": "address+Asc",
"members": [
{
"name": "nMonitors",
Expand Down
1 change: 1 addition & 0 deletions code_gen/templates/classDefinitions/project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
doc_route = "0000-containers"
ui_route = "0000-project-1"
attributes = "wantsSearch|wantsEnter|wantsModify"
sorts = "address+Asc"
# produced_by = "blocks"
# contains = "transaction, withdrawal"
cache_type = "cacheable"
Expand Down
2 changes: 1 addition & 1 deletion pkg/types/types_containerproject.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func NewProjectContainer(chain string, itemsIn []HistoryContainer) ProjectContai
NItems: uint64(len(itemsIn)),
Sorts: sdk.SortSpec{
Fields: []string{"address"},
Order: []sdk.SortOrder{"Asc},
Order: []sdk.SortOrder{sdk.Asc},
},
Updater: NewProjectUpdater(chain, itemsIn),
}
Expand Down

0 comments on commit d387ed0

Please sign in to comment.