Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tools/points-service/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,9 @@ func (p *PointsAPI) RecomputePointsForAddress(w http.ResponseWriter, r *http.Req
pointsByVaultList := []map[string]interface{}{}
for vault, points := range pointsByVault {
pointsByVaultList = append(pointsByVaultList, map[string]interface{}{
"vault_address": vault,
"points": points,
"vault_address": vault,
"points": points,
"network_address": "0x9101eda106A443A0fA82375936D0D1680D5a64F5",
})
}

Expand Down