Skip to content

Commit

Permalink
fix: consider vyper tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNazarii committed Jan 29, 2025
1 parent dd6367e commit c9fdd44
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/utils-e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1081,16 +1081,19 @@ export const testGasEstimation = async (
const userSrcBalanceOfSlot = tenderlySimulator.calculateAddressBalanceSlot(
srcTokenSlots.balanceSlot,
userAddress,
srcTokenSlots.isVyper,
);
const userDestBalanceOfSlot = tenderlySimulator.calculateAddressBalanceSlot(
destTokenSlots.balanceSlot,
userAddress,
destTokenSlots.isVyper,
);
const userSrcAllowanceToAugustusSlot =
tenderlySimulator.calculateAddressAllowanceSlot(
srcTokenSlots.allowanceSlot,
userAddress,
priceRoute.tokenTransferProxy,
srcTokenSlots.isVyper,
);
// build `StateOverride` object
const stateOverride: StateOverride = {
Expand Down

0 comments on commit c9fdd44

Please sign in to comment.