Skip to content

Commit

Permalink
Update assetlist.go
Browse files Browse the repository at this point in the history
  • Loading branch information
nnn-gif committed Jul 22, 2024
1 parent 2aa0a38 commit 29fcc3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/model/assetlist.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (rdb *RelDB) GetAssetList(listname string) ([]dia.AssetList, error) {
rows, err := rdb.postgresClient.Query(context.Background(),
`SELECT id, asset_name, custom_name, symbol, methodology
FROM asset_list
WHERE AND list_name LIKE $1`, listname,
WHERE list_name LIKE $1`, listname,
)
if err != nil {
return nil, err
Expand Down

0 comments on commit 29fcc3f

Please sign in to comment.