include fee in work request
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 35s Details

This commit is contained in:
Ladd Hoffman 2024-03-04 19:56:12 -06:00
parent 817f67a6d5
commit 381928730e
1 changed files with 1 additions and 0 deletions

View File

@ -86,6 +86,7 @@ contract Work1 is ReputationHolder {
uint requestIndex = requestCount++;
WorkRequest storage request = requests[requestIndex];
request.customer = msg.sender;
request.fee = msg.value;
request.stakeIndex = assignWork(requestIndex);
}