Skip to content

Commit

Permalink
refactor(server): minor style tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
solareon committed Aug 29, 2024
1 parent e247b98 commit 39d0566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ CreateThread(function()
auth = {},
creator = nil
}
query[#query+1] = {"INSERT INTO bank_accounts_new (id, amount, transactions, auth, isFrozen, creator) VALUES (?, ?, ?, ?, ?, NULL) ",
query[#query + 1] = {"INSERT INTO bank_accounts_new (id, amount, transactions, auth, isFrozen, creator) VALUES (?, ?, ?, ?, ?, NULL) ",
{ group, cachedAccounts[group].amount, json.encode(cachedAccounts[group].transactions), json.encode({}), cachedAccounts[group].frozen }}
end
for job in pairs(jobs) do
Expand Down

0 comments on commit 39d0566

Please sign in to comment.