From 3447fc347963999afb95d1442c4dbbe4a8f24125 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Tue, 29 Sep 2020 17:36:27 +0200 Subject: [PATCH] parameter tweaks --- src/components/pages/History/PoolTransactions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/pages/History/PoolTransactions.tsx b/src/components/pages/History/PoolTransactions.tsx index c42bc18ce..a222b2c85 100644 --- a/src/components/pages/History/PoolTransactions.tsx +++ b/src/components/pages/History/PoolTransactions.tsx @@ -10,7 +10,7 @@ export default function PoolTransactions(): ReactElement { async function getLogs() { if (!ocean || !accountId) return - const logs = await ocean.pool.getAllPoolLogs(accountId) + const logs = await ocean.pool.getAllPoolLogs(accountId, true, true, true) setLogs(logs) } getLogs()