Skip to content

Commit

Permalink
chore: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
alfetopito committed Oct 18, 2023
1 parent 458d259 commit 86e48b3
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export async function buildEip2162PermitCallData({
const tokenName = _tokenName === 'USD//C' ? 'USD Coin' : _tokenName

const callData = await eip2162Utils.buildPermitCallData(permitParams, chainId, tokenName, ...rest)
console.log(`[buildEip2162PermitCallData]`, callDataParams, callData)
// For some reason, the method above removes the permit selector prefix
// https://github.com/1inch/permit-signed-approvals-utils/blob/master/src/eip-2612-permit.utils.ts#L92
// Adding it back
Expand All @@ -26,7 +25,6 @@ export async function buildDaiLikePermitCallData({
callDataParams,
}: BuildDaiLikePermitCallDataParams): Promise<string> {
const callData = await eip2162Utils.buildDaiLikePermitCallData(...callDataParams)
console.log(`[buildDaiLikePermitCallData]`, callDataParams, callData)

// Same as above, but for dai like
// https://github.com/1inch/permit-signed-approvals-utils/blob/master/src/eip-2612-permit.utils.ts#L140
Expand Down

0 comments on commit 86e48b3

Please sign in to comment.