aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-11-20 22:50:29 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-11-20 22:59:33 +0800
commite1bc3f3f2d538c56ee2830260afced798096422d (patch)
tree13142ed4b9472090e51d69314f7143e3f96b8e69 /packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts
parente5cfc94cd243b339376fa6eb73209790c91c73f2 (diff)
downloaddexon-sol-tools-e1bc3f3f2d538c56ee2830260afced798096422d.tar
dexon-sol-tools-e1bc3f3f2d538c56ee2830260afced798096422d.tar.gz
dexon-sol-tools-e1bc3f3f2d538c56ee2830260afced798096422d.tar.bz2
dexon-sol-tools-e1bc3f3f2d538c56ee2830260afced798096422d.tar.lz
dexon-sol-tools-e1bc3f3f2d538c56ee2830260afced798096422d.tar.xz
dexon-sol-tools-e1bc3f3f2d538c56ee2830260afced798096422d.tar.zst
dexon-sol-tools-e1bc3f3f2d538c56ee2830260afced798096422d.zip
Add nonce to TxOpts
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;