diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-02-08 03:38:30 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-02-08 03:38:30 +0800 |
commit | e6f2c7a382e2e7e940f430f350240cb2f703bdcd (patch) | |
tree | 20fafeb4737dcf79fd66296f4bbcbcef1bbaabdb /packages/website/ts/components/fill_order_json.tsx | |
parent | 69f5f5e94627458f4eb41f4150cfa3d140658d09 (diff) | |
download | dexon-0x-contracts-e6f2c7a382e2e7e940f430f350240cb2f703bdcd.tar.gz dexon-0x-contracts-e6f2c7a382e2e7e940f430f350240cb2f703bdcd.tar.zst dexon-0x-contracts-e6f2c7a382e2e7e940f430f350240cb2f703bdcd.zip |
Remove networkId from orderJSON
Diffstat (limited to 'packages/website/ts/components/fill_order_json.tsx')
-rw-r--r-- | packages/website/ts/components/fill_order_json.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/website/ts/components/fill_order_json.tsx b/packages/website/ts/components/fill_order_json.tsx index f8e43481a..877b65116 100644 --- a/packages/website/ts/components/fill_order_json.tsx +++ b/packages/website/ts/components/fill_order_json.tsx @@ -12,7 +12,6 @@ import { utils } from 'ts/utils/utils'; interface FillOrderJSONProps { blockchain: Blockchain; tokenByAddress: TokenByAddress; - networkId: number; orderJSON: string; onFillOrderJSONChanged: (event: any) => void; } @@ -43,7 +42,6 @@ export class FillOrderJSON extends React.Component<FillOrderJSONProps, FillOrder const hintSalt = ZeroEx.generatePseudoRandomSalt(); const feeRecipient = constants.NULL_ADDRESS; const hintOrder = utils.generateOrder( - this.props.networkId, exchangeContract, hintSideToAssetToken, hintOrderExpiryTimestamp, |