Skip to content

Commit

Permalink
test(smoke): use parachain connection when fetching the runtime name
Browse files Browse the repository at this point in the history
  • Loading branch information
RomarQ committed Dec 10, 2024
1 parent 2ae249a commit 70d9062
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/suites/smoke/test-dynamic-fees.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,8 @@ describeSuite({
log("Skipping test suite due to runtime version");
return;
}
const weightFee = ConstantStore(context).WEIGHT_FEE.get(specVersion.toNumber());
const runtime = paraApi.runtimeChain.toUpperCase();
const weightFee = RUNTIME_CONSTANTS[runtime].WEIGHT_FEE.get(specVersion.toNumber());

const failures = blockData
.map(({ blockNum, nextFeeMultiplier, baseFeePerGasInGwei }) => {
Expand Down

0 comments on commit 70d9062

Please sign in to comment.