1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

fix history

This commit is contained in:
alexcos20 2020-05-19 09:23:38 -07:00
parent c0effd449f
commit 8831c46e39

View File

@ -2,10 +2,11 @@ import { Account } from '@oceanprotocol/squid'
export async function getUserJobs(ocean: any, account: string) {
try {
const account = await ocean.accounts.list()
const accounts = await ocean.accounts.list()
const account=accounts[0]
await account.authenticate()
const jobList = await ocean.compute.status(account[0])
const jobList = await ocean.compute.status(account)
return jobList
} catch (error) {
console.error(error)