Skip to content

Commit

Permalink
Merge pull request #375 from cstenglein/poll-tx
Browse files Browse the repository at this point in the history
poll tx every 20s instead of 5s
  • Loading branch information
cstenglein authored Jul 3, 2022
2 parents 010e899 + 5b81895 commit 8700395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ const Home: FC = () => {
setIsLoadingTransactions,
]);

useInterval(getTransactions, 5000);
useInterval(getTransactions, 20000);

const closeModalHandler = (txSent?: boolean) => {
setShowModal(false);
Expand Down

0 comments on commit 8700395

Please sign in to comment.