typo
This commit is contained in:
parent
e979ed30d7
commit
46dfc1763a
4
job.go
4
job.go
@ -946,7 +946,7 @@ func jobVaultItemStatus(j Job) {
|
|||||||
|
|
||||||
currentItemID64 = 0
|
currentItemID64 = 0
|
||||||
for rows.Next() {
|
for rows.Next() {
|
||||||
err = rows.Scan(&itemID64, &userID64, &deposit, &withdraw)
|
err = rows.Scan(&itemID64, &user, &deposit, &withdraw)
|
||||||
logOnError(err, "jobVaultItemStatus : scan next val")
|
logOnError(err, "jobVaultItemStatus : scan next val")
|
||||||
if itemID64 != currentItemID64 {
|
if itemID64 != currentItemID64 {
|
||||||
if currentItemID64 != 0 {
|
if currentItemID64 != 0 {
|
||||||
@ -972,7 +972,7 @@ func jobVaultItemStatus(j Job) {
|
|||||||
withdrawList = nil
|
withdrawList = nil
|
||||||
}
|
}
|
||||||
|
|
||||||
userList = append(userList, userID64)
|
userList = append(userList, user)
|
||||||
depositList = append(depositList, deposit)
|
depositList = append(depositList, deposit)
|
||||||
withdrawList = append(withdrawList, withdraw)
|
withdrawList = append(withdrawList, withdraw)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user