aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/types.ts6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/types.ts b/src/types.ts
index 8c378816f..cf1376754 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -34,15 +34,11 @@ export type OrderValues = [
BigNumber.BigNumber, BigNumber.BigNumber, BigNumber.BigNumber
];
-export interface TxData {
- from: string;
-}
-
export interface ExchangeContract {
isValidSignature: any;
fill: (
orderAddresses: OrderAddresses, orderValues: OrderValues, fillAmount: BigNumber.BigNumber,
- shouldCheckTransfer: boolean, v: number, r: string, s: string, txData: TxData,
+ shouldCheckTransfer: boolean, v: number, r: string, s: string, txData: TxOpts,
) => ContractResponse;
}