Skip to content

Commit

Permalink
Fix broken ts test
Browse files Browse the repository at this point in the history
  • Loading branch information
boundless-forest committed May 24, 2024
1 parent c409001 commit b60e565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ethereum/test-bls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ describe("Test Bls precompile", () => {
.fast_aggregate_verify(pub_keys_bytes, hexToBytes(message), hexToBytes(signature))
.send();
expect(receipt.transactionHash).to.not.be.null;
expect(receipt.gasUsed).to.be.equals(8597448);
expect(receipt.gasUsed).to.be.equals(2597448);

// Reserve enough space for the pre-contract operations
expect(BLOCK_GAS_LIMIT - receipt.gasUsed).to.be.gt(10_000_000);
Expand Down

0 comments on commit b60e565

Please sign in to comment.