Skip to content

Commit 7df774d

Browse files
committed
chore: fix private payments test
1 parent 99549bc commit 7df774d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

yarn-project/end-to-end/src/e2e_fees/fees_test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ export class FeesTest {
108108
if (!numberOfAccounts) {
109109
throw new Error('There must be at least 1 initial account.');
110110
}
111-
this.coinbase = setupOptions.coinbase ?? EthAddress.random();
111+
setupOptions.coinbase ??= EthAddress.random();
112+
this.coinbase = setupOptions.coinbase!;
112113
this.logger = createLogger(`e2e:e2e_fees:${testName}`);
113114
this.snapshotManager = createSnapshotManager(
114115
`e2e_fees/${testName}-${numberOfAccounts}`,

0 commit comments

Comments
 (0)