From dd5fcc0cda89ce456e89f0160e3a9cdefad444a7 Mon Sep 17 00:00:00 2001 From: Ladd Hoffman Date: Wed, 13 Mar 2024 12:06:56 -0500 Subject: [PATCH] set pool duration to 1hr --- client/src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/App.jsx b/client/src/App.jsx index b2c187e..a4cbc7a 100644 --- a/client/src/App.jsx +++ b/client/src/App.jsx @@ -189,7 +189,7 @@ function App() { }; const initiateValidationPool = async (postIndex) => { - const poolDuration = 60; + const poolDuration = 3600; await DAO.methods.initiateValidationPool(postIndex, poolDuration).send({ from: account, gas: 1000000,