diff --git a/src/components/pages/History/PoolTransactions.tsx b/src/components/pages/History/PoolTransactions.tsx index f1716e7fe..6d7d0cc25 100644 --- a/src/components/pages/History/PoolTransactions.tsx +++ b/src/components/pages/History/PoolTransactions.tsx @@ -50,9 +50,7 @@ export default function PoolTransactions(): ReactElement { async function getLogs() { if (!ocean || !accountId) return - const logs = await ocean.pool.getAllPoolLogs( - '0xe08A1dAe983BC701D05E492DB80e0144f8f4b909' - ) + const logs = await ocean.pool.getAllPoolLogs(accountId) // limit to 100 latest transactions for now setLogs(logs.slice(0, 99)) }