aboutsummaryrefslogtreecommitdiffstats
path: root/src/contract_wrappers/ether_token_wrapper.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-09-05 17:38:28 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-09-05 17:38:28 +0800
commita12df1c73a97b3ba18ab53c1b25be39b837f6240 (patch)
tree6d9ea6902ad1011b0395fc62fa89e89eca259dd9 /src/contract_wrappers/ether_token_wrapper.ts
parent876032a8a71f9eedbf3394727dbc0ea513100836 (diff)
downloaddexon-sol-tools-a12df1c73a97b3ba18ab53c1b25be39b837f6240.tar
dexon-sol-tools-a12df1c73a97b3ba18ab53c1b25be39b837f6240.tar.gz
dexon-sol-tools-a12df1c73a97b3ba18ab53c1b25be39b837f6240.tar.bz2
dexon-sol-tools-a12df1c73a97b3ba18ab53c1b25be39b837f6240.tar.lz
dexon-sol-tools-a12df1c73a97b3ba18ab53c1b25be39b837f6240.tar.xz
dexon-sol-tools-a12df1c73a97b3ba18ab53c1b25be39b837f6240.tar.zst
dexon-sol-tools-a12df1c73a97b3ba18ab53c1b25be39b837f6240.zip
Fix gasPrice regression
Diffstat (limited to 'src/contract_wrappers/ether_token_wrapper.ts')
-rw-r--r--src/contract_wrappers/ether_token_wrapper.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/contract_wrappers/ether_token_wrapper.ts b/src/contract_wrappers/ether_token_wrapper.ts
index ba0cd05d8..4c19b3caa 100644
--- a/src/contract_wrappers/ether_token_wrapper.ts
+++ b/src/contract_wrappers/ether_token_wrapper.ts
@@ -13,8 +13,8 @@ import * as EtherTokenArtifacts from '../artifacts/EtherToken.json';
export class EtherTokenWrapper extends ContractWrapper {
private _etherTokenContractIfExists?: EtherTokenContract;
private _tokenWrapper: TokenWrapper;
- constructor(web3Wrapper: Web3Wrapper, tokenWrapper: TokenWrapper, gasPrice?: BigNumber.BigNumber) {
- super(web3Wrapper, gasPrice);
+ constructor(web3Wrapper: Web3Wrapper, tokenWrapper: TokenWrapper) {
+ super(web3Wrapper);
this._tokenWrapper = tokenWrapper;
}
/**