Skip to content

Commit

Permalink
blindAuction.js: Fix invalid args passed to encodeBytes32String
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Yanev <[email protected]>
  • Loading branch information
victor-yanev committed Mar 21, 2024
1 parent 51dbb15 commit 45baa32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/solidity/blind-auction/blindAuction.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ describe('@solidityequiv1 Solidity Blind Auction Test Suite', function () {
.reveal(
[hundredHbars, twoHundredHbars],
[false, true],
[ethers.encodeBytes32String(2), ethers.encodeBytes32String(23)],
[ethers.encodeBytes32String('2'), ethers.encodeBytes32String('23')],
Constants.GAS_LIMIT_1_000_000
);
await expect(result.wait()).to.eventually.be.rejected.and.have.property(
Expand Down

0 comments on commit 45baa32

Please sign in to comment.