Skip to content

Commit

Permalink
fix: node spawning bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cytadela8 committed Oct 9, 2024
1 parent e8c087e commit 1c6de49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/tests/ts-integration/tests/fees.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ testFees('Test fees', function () {
const l1GasPrice = 2_000_000_000n; /// set to 2 gwei

await mainNode.killAndWaitForShutdown();
await mainNodeSpawner.spawnMainNode({
mainNode = await mainNodeSpawner.spawnMainNode({
newL1GasPrice: l1GasPrice,
newPubdataPrice: l1GasPrice
});
Expand Down Expand Up @@ -298,7 +298,7 @@ testFees('Test fees', function () {
if (isETHBasedChain) return;

await mainNode.killAndWaitForShutdown();
await mainNodeSpawner.spawnMainNode({
mainNode = await mainNodeSpawner.spawnMainNode({
newL1GasPrice: l1GasPrice,
newPubdataPrice: l1GasPrice,
externalPriceApiClientForcedNumerator: 300,
Expand Down

0 comments on commit 1c6de49

Please sign in to comment.