Skip to content

Commit f41b3eb

Browse files
committed
fix donate to gitcoin
1 parent 4d70785 commit f41b3eb

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/common/src/allo/backends/allo-v2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export class AlloV2 implements Allo {
170170
abi: MRC_ABI,
171171
functionName: "allocate",
172172
args: [poolIds, amounts, data],
173-
value: nativeTokenAmount,
173+
value: nativeTokenAmount + (directAllocation?.amount ?? BigInt(0)),
174174
},
175175
this.chainId
176176
);

packages/data-layer/src/data-layer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,6 @@ export class DataLayer {
250250
);
251251

252252
if (response.projects.length === 0) return null;
253-
console.log("response.projects", response.projects);
254253

255254
const project = mergeCanonicalAndLinkedProjects(response.projects)[0];
256255

0 commit comments

Comments
 (0)