diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2018-09-03 01:36:28 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2018-09-04 22:57:47 +0800 |
commit | f6b6619c08d5588ef5dfa653886f37c63018b477 (patch) | |
tree | b1b3852e86f02db77283fc2242110f20ede772b4 /packages/contracts/test/utils | |
parent | e480e08aa44b3af0ef506278ce2018f8659e5971 (diff) | |
download | dexon-sol-tools-f6b6619c08d5588ef5dfa653886f37c63018b477.tar dexon-sol-tools-f6b6619c08d5588ef5dfa653886f37c63018b477.tar.gz dexon-sol-tools-f6b6619c08d5588ef5dfa653886f37c63018b477.tar.bz2 dexon-sol-tools-f6b6619c08d5588ef5dfa653886f37c63018b477.tar.lz dexon-sol-tools-f6b6619c08d5588ef5dfa653886f37c63018b477.tar.xz dexon-sol-tools-f6b6619c08d5588ef5dfa653886f37c63018b477.tar.zst dexon-sol-tools-f6b6619c08d5588ef5dfa653886f37c63018b477.zip |
Fix geth tests
Diffstat (limited to 'packages/contracts/test/utils')
-rw-r--r-- | packages/contracts/test/utils/multi_sig_wrapper.ts | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/packages/contracts/test/utils/multi_sig_wrapper.ts b/packages/contracts/test/utils/multi_sig_wrapper.ts index cb2b4c74c..e12a58695 100644 --- a/packages/contracts/test/utils/multi_sig_wrapper.ts +++ b/packages/contracts/test/utils/multi_sig_wrapper.ts @@ -6,7 +6,6 @@ import * as _ from 'lodash'; import { AssetProxyOwnerContract } from '../../generated_contract_wrappers/asset_proxy_owner'; import { MultiSigWalletContract } from '../../generated_contract_wrappers/multi_sig_wallet'; -import { constants } from './constants'; import { LogDecoder } from './log_decoder'; export class MultiSigWrapper { @@ -41,10 +40,14 @@ export class MultiSigWrapper { const tx = await this._logDecoder.getTxWithDecodedLogsAsync(txHash); return tx; } - public async executeTransactionAsync(txId: BigNumber, from: string): Promise<TransactionReceiptWithDecodedLogs> { + public async executeTransactionAsync( + txId: BigNumber, + from: string, + opts: { gas?: number } = {}, + ): Promise<TransactionReceiptWithDecodedLogs> { const txHash = await this._multiSig.executeTransaction.sendTransactionAsync(txId, { from, - gas: constants.MAX_EXECUTE_TRANSACTION_GAS, + gas: opts.gas, }); const tx = await this._logDecoder.getTxWithDecodedLogsAsync(txHash); return tx; @@ -57,7 +60,6 @@ export class MultiSigWrapper { const txHash = await (this ._multiSig as AssetProxyOwnerContract).executeRemoveAuthorizedAddressAtIndex.sendTransactionAsync(txId, { from, - gas: constants.MAX_EXECUTE_TRANSACTION_GAS, }); const tx = await this._logDecoder.getTxWithDecodedLogsAsync(txHash); return tx; |