Skip to content

Commit

Permalink
fix: compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
grothem committed Oct 25, 2023
1 parent 9efe3e8 commit b091f85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/contract-helpers/src/sdai-wrapper/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Signature, SignatureLike, splitSignature } from '@ethersproject/bytes';
import { BigNumber, PopulatedTransaction, providers } from 'ethers';
import BaseService from '../commons/BaseService';
import {
BaseTokenWrapper,
IBaseTokenWrapper,
SavingsDaiTokenWrapper,
SavingsDaiTokenWrapperInterface,
} from './typechain/SavingsDaiTokenWrapper';
Expand Down Expand Up @@ -100,7 +100,7 @@ export class SavingsDaiTokenWrapperService
}: SupplyTokenWithPermitParams) {
const sig: Signature = splitSignature(signature);

const permitStruct: BaseTokenWrapper.PermitSignatureStruct = {
const permitStruct: IBaseTokenWrapper.PermitSignatureStruct = {
deadline,
v: sig.v,
r: sig.r,
Expand Down Expand Up @@ -140,7 +140,7 @@ export class SavingsDaiTokenWrapperService
) {
const sig: Signature = splitSignature(signature);

const permitStruct: BaseTokenWrapper.PermitSignatureStruct = {
const permitStruct: IBaseTokenWrapper.PermitSignatureStruct = {
deadline,
v: sig.v,
r: sig.r,
Expand Down

0 comments on commit b091f85

Please sign in to comment.