Skip to content

Commit

Permalink
feat: rename of events moved from main to 195 (#195)
Browse files Browse the repository at this point in the history
Signed-off-by: Mariusz Jasuwienas <mariusz.jasuwienas@arianelabs.com>
  • Loading branch information
arianejasuwienas committed Feb 11, 2025
1 parent 8270fd2 commit 264492e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/HTS.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -877,9 +877,9 @@ contract HTSTest is Test, TestSetup {
tokenTransfers[0].transfers[2] = transfer3;
vm.prank(owner);
vm.expectEmit(true, true, true, true, token);
emit IERC20Events.Transfer(owner, bob, amountToBob);
emit IERC20.Transfer(owner, bob, amountToBob);
vm.expectEmit(true, true, true, true, token);
emit IERC20Events.Transfer(owner, alice, amountToAlice);
emit IERC20.Transfer(owner, alice, amountToAlice);
int64 responseCode = IHederaTokenService(HTS_ADDRESS).cryptoTransfer(hbarTransfers, tokenTransfers);
assertEq(responseCode, HederaResponseCodes.SUCCESS);
assertEq(IERC20(token).balanceOf(bob), amountToBob);
Expand Down

0 comments on commit 264492e

Please sign in to comment.