diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index 691d465cc..c129eb367 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -92,9 +92,9 @@ export class ExchangeWrapper extends ContractWrapper { orderValues, fillAmount, shouldCheckTransfer, - signatureData.v, - signatureData.r, - signatureData.s, + ecSignature.v, + ecSignature.r, + ecSignature.s, { from: senderAddress, }, |