Skip to content

Commit

Permalink
Remove comment from auth.ts on server
Browse files Browse the repository at this point in the history
  • Loading branch information
ccali11 committed Mar 27, 2023
1 parent 24e666c commit c3633a5
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions services/users/src/routes/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const { verifyMessage } = useEthers()
const { getUser, upsertNonce, addUser } = useDB()
const router = express.Router()


router.get('/message/:provider/:address', async (req: express.Request, res: express.Response) => {
const { address } = req.params
try {
Expand Down Expand Up @@ -79,17 +78,4 @@ router.post('/login', async (req: express.Request, res: express.Response) => {
}
})

/**
const accounts: Array<Account> = [
{
address: address,
currency: currency,
balance: '1000000000000000000',
balanceSnapshots: [{ date: '2023-02-06', balance: '1000000000000000000' }, { date: '2023-02-05', balance: '100000000000000000' }],
roi: 0,
walletProvider: provider
},
]
*/

export default router

0 comments on commit c3633a5

Please sign in to comment.