From 1d7683ff75ef6702f23e428fad949fde0509848c Mon Sep 17 00:00:00 2001 From: Ladd Hoffman Date: Tue, 16 Apr 2024 18:07:41 -0500 Subject: [PATCH] fixup, include empty citations --- client/src/components/work-contracts/WorkRequests.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/work-contracts/WorkRequests.jsx b/client/src/components/work-contracts/WorkRequests.jsx index ad699a5..f402ecf 100644 --- a/client/src/components/work-contracts/WorkRequests.jsx +++ b/client/src/components/work-contracts/WorkRequests.jsx @@ -116,7 +116,7 @@ function WorkRequests({ }, [workContract, account, priceWei]); const onSubmitEvidence = useCallback(async ({ hash }) => { - await workContract.methods.submitWorkEvidence(currentRequestId, hash).send({ + await workContract.methods.submitWorkEvidence(currentRequestId, hash, []).send({ from: account, gas: 1000000, });