Skip to content

Commit ca85f20

Browse files
committed
fix: missing await
1 parent f1483ef commit ca85f20

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/fee_sharing_pda.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ async function fullFlow(
411411

412412
console.log("fund fee");
413413

414-
fundFee({
414+
await fundFee({
415415
svm,
416416
program,
417417
funder,
@@ -458,7 +458,7 @@ async function fullFlow(
458458

459459
console.log("fund fee before share update");
460460
svm.expireBlockhash();
461-
fundFee({
461+
await fundFee({
462462
svm,
463463
program,
464464
funder,
@@ -514,7 +514,7 @@ async function fullFlow(
514514

515515
console.log("fund fee after share update");
516516
svm.expireBlockhash();
517-
fundFee({
517+
await fundFee({
518518
svm,
519519
program,
520520
funder,

0 commit comments

Comments
 (0)