increase gas limit for evaluate outcome
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 27s Details

This commit is contained in:
Ladd Hoffman 2024-04-20 13:16:48 -05:00
parent a638968918
commit 819b7180ed
1 changed files with 1 additions and 1 deletions

View File

@ -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]);