Skip to content

Commit 597fb2a

Browse files
fix: cglMarkupPercent typo (#301)
1 parent b02dae6 commit 597fb2a

File tree

1 file changed

+1
-1
lines changed
  • packages/executor/src/modules

1 file changed

+1
-1
lines changed

packages/executor/src/modules/eth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ export class Eth {
340340
});
341341
}
342342

343-
callGasLimit = ((callGasLimit * BigInt(10000 + this.config.cglMarkup)) / BigInt(10000)) + BigInt(cglMarkup || 0)
343+
callGasLimit = ((callGasLimit * BigInt(10000 + this.config.cglMarkupPercent)) / BigInt(10000)) + BigInt(cglMarkup || 0)
344344

345345
this.logger.debug(
346346
{

0 commit comments

Comments
 (0)