aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-11-21 23:43:36 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-11-21 23:43:36 +0800
commitfc123871ad9b1e791b8156d069c503e8d869139c (patch)
treef31546c91d6936432f18d2a2c224549c7f65c9c9 /packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts
parentb62fbd0b13dbef67d8df1177b1ca6b4d082faaa9 (diff)
parentf27fef0295243eeb85498ee09810a2f56afd88bd (diff)
downloaddexon-sol-tools-fc123871ad9b1e791b8156d069c503e8d869139c.tar
dexon-sol-tools-fc123871ad9b1e791b8156d069c503e8d869139c.tar.gz
dexon-sol-tools-fc123871ad9b1e791b8156d069c503e8d869139c.tar.bz2
dexon-sol-tools-fc123871ad9b1e791b8156d069c503e8d869139c.tar.lz
dexon-sol-tools-fc123871ad9b1e791b8156d069c503e8d869139c.tar.xz
dexon-sol-tools-fc123871ad9b1e791b8156d069c503e8d869139c.tar.zst
dexon-sol-tools-fc123871ad9b1e791b8156d069c503e8d869139c.zip
Merge branch 'development' of https://github.com/0xProject/0x-monorepo into feature/instant/push-to-history
Diffstat (limited to 'packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts')
-rw-r--r--packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts b/packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts
index 80742e030..5497f92b5 100644
--- a/packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts
+++ b/packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts
@@ -124,6 +124,7 @@ export class ForwarderWrapper extends ContractWrapper {
from: normalizedTakerAddress,
gas: orderTransactionOpts.gasLimit,
gasPrice: orderTransactionOpts.gasPrice,
+ nonce: orderTransactionOpts.nonce,
},
);
}
@@ -140,6 +141,7 @@ export class ForwarderWrapper extends ContractWrapper {
from: normalizedTakerAddress,
gas: orderTransactionOpts.gasLimit,
gasPrice: orderTransactionOpts.gasPrice,
+ nonce: orderTransactionOpts.nonce,
},
);
return txHash;
@@ -213,6 +215,7 @@ export class ForwarderWrapper extends ContractWrapper {
from: normalizedTakerAddress,
gas: orderTransactionOpts.gasLimit,
gasPrice: orderTransactionOpts.gasPrice,
+ nonce: orderTransactionOpts.nonce,
},
);
}
@@ -230,6 +233,7 @@ export class ForwarderWrapper extends ContractWrapper {
from: normalizedTakerAddress,
gas: orderTransactionOpts.gasLimit,
gasPrice: orderTransactionOpts.gasPrice,
+ nonce: orderTransactionOpts.nonce,
},
);
return txHash;