Skip to content

Commit

Permalink
fix dev tests
Browse files Browse the repository at this point in the history
  • Loading branch information
crystalin committed Nov 28, 2024
1 parent 055be9b commit 47a36ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describeSuite({
expect(initialValue).to.equal(8_000_000_000_000_000_000n);

const gasPrice = await context.viem().getGasPrice();
expect(gasPrice).to.eq(10_000_000_000n);
expect(gasPrice).to.eq(2_500_000_000n); // min gas price
},
});
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ describeSuite({
blockNumber = (await context.polkadotJs().rpc.chain.getHeader()).number.toBigInt();
baseFeePerGas = (await context.viem().getBlock({ blockNumber: blockNumber }))
.baseFeePerGas!;
expect(baseFeePerGas).to.equal(124_827_007_821_127n);
expect(baseFeePerGas).to.equal(31_206_751_955_281n);

const rawSigned = await createEthersTransaction(context, {
to: contractAddress,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describeSuite({
expect(multiplier).to.equal(100_000_000_000_000_000n);

const gasPrice = await context.viem().getGasPrice();
expect(gasPrice).to.eq(125_000_000n);
expect(gasPrice).to.eq(31_250_000n);
},
});
},
Expand Down

0 comments on commit 47a36ba

Please sign in to comment.