We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0955bb9 commit 4ccf7baCopy full SHA for 4ccf7ba
packages/eth-rpc-adapter/src/__tests__/e2e/endpoint.test.ts
@@ -1941,7 +1941,7 @@ describe('endpoint', () => {
1941
const bbb = (gasLimit.toNumber() % 100000) / 100;
1942
1943
const { gasLimit: gasLimitWithBlockTag } = await estimateGas(tx, 'latest');
1944
- expect(gasLimitWithBlockTag).to.equal(gasLimit);
+ expect(gasLimitWithBlockTag.toBigInt()).to.equal(gasLimit.toBigInt());
1945
1946
// should be passing gasLimit instead of usedGas
1947
expect(bbb).to.gt(GAS_MONSTER_GAS_REQUIRED / 30000);
0 commit comments