From 819b7180ed9bd126a6485ef544e34051e409219b Mon Sep 17 00:00:00 2001 From: Ladd Hoffman Date: Sat, 20 Apr 2024 13:16:48 -0500 Subject: [PATCH] increase gas limit for evaluate outcome --- frontend/src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 87341de..e863314 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -310,7 +310,7 @@ function App() { const evaluateOutcome = useCallback(async (poolIndex) => { await DAO.methods.evaluateOutcome(poolIndex).send({ from: account, - gas: 1000000, + gas: 10000000, }); }, [DAO, account]);