We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 282fee6 commit 1fe6d7eCopy full SHA for 1fe6d7e
src/Modules/IexecPoco.ts
@@ -436,12 +436,11 @@ export function handleFaultyContribution(event: FaultyContributionEvent): void {
436
workerAccount.score = faultyContributionEvent.score;
437
workerAccount.save();
438
}
439
-
440
export function handleDealSponsored(event: DealSponsoredEvent): void {
441
let dealSponsoredEvent = new DealSponsored(createEventID(event));
442
dealSponsoredEvent.transaction = logTransaction(event).id;
443
dealSponsoredEvent.timestamp = event.block.timestamp;
444
- dealSponsoredEvent.dealId = event.params.dealId.toHex();
+ dealSponsoredEvent.deal = event.params.dealId.toHex();
445
dealSponsoredEvent.sponsor = event.params.sponsor.toHex();
446
dealSponsoredEvent.save();
447
0 commit comments